added test related to issue #1113

This commit is contained in:
mrdudz
2020-07-22 15:55:55 +02:00
parent 98b2d43c2b
commit afe455238c
2 changed files with 19 additions and 0 deletions

12
test/misc/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;
}