1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-25 22:18:27 +00:00

Bug #1113 was fixed long ago.

This commit is contained in:
acqn
2020-08-25 22:34:25 +08:00
parent 344aea0669
commit d68925c6a8
2 changed files with 0 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
/* bug #1113 - Compiler crashes when calling functions "redefined" as other types */
void f() {}
int f;
int main(void)
{
f();
return 0;
}