xxxxxxxxxx
struct S
{
union
struct { int a = 123; }
struct { int b = 456; }
}
void main()
S s;
assert(s.b == 123);