6_7_9_22_static_union_designated_nonfirst.c (89B)
1 static union U { 2 int a; 3 int b; 4 } g = {.b = 42}; 5 6 int test_main(void) { return g.b; }