diff --git a/v0100/tests/bugs/ncompile/010.c b/v0100/tests/bugs/ncompile/010.c new file mode 100644 index 0000000..ea2fa2f --- /dev/null +++ b/v0100/tests/bugs/ncompile/010.c @@ -0,0 +1,8 @@ +extern int a[4]; + +int a[] = { 1 }; // doesn't compile + +int main(void) +{ + return 0; +}