some fixes
[cparser] / parsetest / shouldfail / init2.c
1 struct S {
2         int a, b;
3 };
4
5 struct S arr[] = { { 1, 2, { 3, 4 } } };
6
7 int main(void)
8 {
9         return 0;
10 }