cc65/test/err/bug1145.c

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;
}