Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f8fd82ba49827db0f6a6ba00c55a7b56b12a19fa
/
.
/
test
/
CodeGenCXX
/
anonymous-union-member-initializer.cpp
blob: ea3eafc9955320271c1b067bfb07ad4663f81bc5 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s
struct
A
{
union
{
int
a
;
void
*
b
;
};
A
()
:
a
(
0
)
{
}
};
A a
;