cc65/test/err/bug1113.c
2020-08-25 22:34:25 +08:00

12 lines
150 B
C

/* bug #1113 - Compiler crashes when calling functions "redefined" as other types */
void f() {}
int f;
int main(void)
{
f();
return 0;
}