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