brintos

brintos / llvm-project-archived public Read only

0
0
Text · 131 B · 28be9a5 Raw
12 lines · cpp
1struct Struct {2  union Union {3    enum NestedEnum { RED, BLUE };4  };5  Union U;6};7 8Struct S;9int test() {10  return S.U.BLUE;11}12