6_7_9_15_union_designated_nonfirst.c (91B)
1 int test_main(void) { 2 union U { 3 int a; 4 int b; 5 } u = {.b = 42}; 6 return u.b; 7 }