Sign in
llvm
/
clang
/
337cba4b3e17b98cfa512dfd12e57f4ccb0859be
/
.
/
test
/
CodeGenCXX
/
anonymous-union-member-initializer.cpp
blob: 2030f4053c90aec28ae298da2e5a88f640b11f2e [
file
] [
log
] [
blame
]
// RUN: clang-cc -emit-llvm -o - %s
struct
A
{
union
{
int
a
;
void
*
b
;
};
A
()
:
a
(
0
)
{
}
};
A a
;