Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c186b8fe4a308b53569fe839a3224de70d92ab0e
/
.
/
test
/
CodeGenCXX
/
anonymous-union-member-initializer.cpp
blob: 2030f4053c90aec28ae298da2e5a88f640b11f2e [
file
] [
log
] [
blame
]
Anders Carlsson
c186b8f
2009-09-02 21:14:47 +0000
[
diff
] [
blame^
]
1
// RUN: clang-cc -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
;