Wrong 'static decl after non-static decl' error
[cparser] / parsetest / cp_error040.c
1 extern int a;     // this should reference an "a" defined in another file
2 static int a;
3
4 int main(void)
5 {
6         return 0;
7 }