Consistently name the directories should_*.
[cparser] / parsetest / should_fail / 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 }