Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / structd.c
1 typedef struct {
2         int a;
3         char c;
4         double d;
5         double a;
6 } t;
7
8 int main(void)
9 {
10         return 0;
11 }