Forbid declarations after label, case and default statements.
[cparser] / parsetest / cp_error047.c
1 struct S { int x; };
2
3 int main(void)
4 {
5         struct S { char y; };
6         return 0;
7 }