another test
[cparser] / parsetest / init6.c
index 10e48d9..c521a2a 100644 (file)
@@ -1 +1,5 @@
 struct { char str[10]; int y; } bla[] = { [13].str = { 1, 2,3 } };
+
+int main() {
+       return bla[13].str[1] != 2;
+}