1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 22:29:31 +00:00
cc65/test/err/bug1145.c

14 lines
149 B
C
Raw Normal View History

2020-08-17 22:41:07 +00:00
/* bug #1145 - Internal error with function type object */
void f()
{
f = 0; /* internal error */
}
int main(void)
{
f();
return 0;
}