blob: 28be9a5d60ec3be29543502a2fd6516f12521e70 [file] [log] [blame]
struct Struct {
union Union {
enum NestedEnum { RED, BLUE };
};
Union U;
};
Struct S;
int test() {
return S.U.BLUE;
}