implement compound literals (ineficient code at the moment)
[cparser] / parsetest / shouldfail / init2.c
1 struct S {
2         int a, b;
3 };
4
5 struct S arr[] = { { 1, 2, { 3, 4 } } };