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
]
Shih-wei Liao
f8fd82b
2010-02-10 11:10:31 -0800
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 -emit-llvm -o - %s
2
3
struct
A
{
4
union
{
5
int
a
;
6
void
*
b
;
7
};
8
9
A
()
:
a
(
0
)
{
}
10
};
11
12
A a
;