6_7_9_invalid_struct_designator.c (81B)
1 int test_main(void) { 2 struct S { 3 int a; 4 } s = {.b = 42}; 5 return s.a; 6 }