Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
2b51a0806db1a717090cb2a2afc3e9634d536f09
/
.
/
test
/
CFrontend
/
2003-10-09-UnionInitializerBug.c
blob: e574a1931d3a6c73d7cc011d1983f0869a03d64b [
file
] [
log
] [
blame
]
struct
Foo
{
unsigned
a
;
unsigned
b
;
unsigned
c
;
};
struct
Bar
{
union
{
void
**
a
;
struct
Foo
b
;
}
u
;
};
struct
Bar
test
=
{
0
};