Forbid declarations after label, case and default statements.
[cparser] / parsetest / shouldfail / anonunion.c
1 typedef struct {
2         int a;
3         union {
4                 struct {
5                         double a;
6                 };
7         };
8
9         float b;
10 } blup;
11
12 int main(void)
13 {
14         blup b;
15         return 0;
16 }