Implement -Wunknown-pragmas.
[cparser] / parsetest / structs.c
1
2 struct Bla {
3         struct blup {
4                 int a, b;
5         } d;
6         int c;
7 };
8
9 struct blup f = { 1, 2 };
10
11 int func(void)
12 {
13         struct blup {
14                 char str[20];
15         };
16         struct blup b = { "hullo" };
17         return 0;
18 }
19
20 struct blup k = { 1, 2};