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
test/err/bug1113.c Normal file
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;
}