7208f29b21122b6c3c1e99b66f88d79b658394a7
[cparser] / 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 }