1 2 3 4 5 6 7 8 9 10
struct X { union { int x; }; }; int main() { struct X x = (struct X){ .x = 50 }; }