3cfe6ead5b3282f02bb5c44e881d6a0883330e9d
[cparser] / init1.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 };