Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
cf8aac3b666208ed35d7e00bcf4e35033635ce0c
/
.
/
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
;