Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / structns0.c
1 struct L { int a; };
2
3 int main(void)
4 {
5         struct L;
6         struct L *k;
7
8         return k->a;
9 }