Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / cp_error003.c
1 typedef int (functype) (int a);
2
3 functype blo
4 {
5         return a;
6 }