more parsetests
[cparser] / parsetest / shouldfail / init3.c
1 static const int l = 5;
2
3 struct S {
4         int a, b;
5 };
6
7 struct S arr[] = { 1, l };
8
9 int main(void)
10 {
11         return 0;
12 }