more parsetests
[cparser] / parsetest / init3.c
1 typedef struct {
2         int a, b;
3 } Stru1;
4
5 typedef struct {
6         double d;
7         Stru1 stru;
8         float c;
9 } Stru2;
10
11 static const Stru1 k = { 4, 2 };
12 static const Stru2 a = { 2.4, k, 0.4f };