added GNU complex keywords
[cparser] / parsetest / compoundlit3.c
1 int a, b, c;
2
3 typedef struct S {
4         int k[3];
5         struct lku {
6                 double d, e;
7         } elem;
8 } S;
9 S kg;
10
11 int main(void) {
12         S k = { a, b };
13
14         kg = k;
15
16         return 0;
17 }