1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +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;
}