Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / adr_reg.c
1 int test(int *a) {
2         return *a;
3 }
4
5 int main() {
6         register int a = 3;
7
8         printf("%d\n", test(&a));
9 }