1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +00:00
cc65/test/err/bug1145.c
2020-08-18 00:41:07 +02:00

14 lines
149 B
C

/* bug #1145 - Internal error with function type object */
void f()
{
f = 0; /* internal error */
}
int main(void)
{
f();
return 0;
}