Sign in
fuchsia
/
third_party
/
llvm-project
/
a336055ddb4290b953871d1714159de4b70670a8
/
.
/
llvm
/
test
/
tools
/
llvm-debuginfo-analyzer
/
WebAssembly
/
Inputs
/
pr-46466.cpp
blob: 28be9a5d60ec3be29543502a2fd6516f12521e70 [
file
] [
log
] [
blame
]
struct
Struct
{
union
Union
{
enum
NestedEnum
{
RED
,
BLUE
};
};
Union
U
;
};
Struct
S
;
int
test
()
{
return
S
.
U
.
BLUE
;
}