Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / ref_local.c
1 int *test(void) {
2         int x = 3;
3
4         return &x;
5 }
6
7 int main() {
8         return *test();
9 }