6_7_2_1_02_anon_struct.c (112B)
1 int test_main(void) { 2 struct S { 3 int x; 4 struct { 5 int y; 6 }; 7 } s = {0, 42}; 8 return s.y; 9 }