Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / f.c
1 int k |= 4;
2
3 int foo(void)
4 {
5         int l |= 2;
6 }