Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
c0f376dba2b51aacf06cfefbc1c46120bb8b725d
/
.
/
test
/
CFrontend
/
2003-01-30-UnionInit.c
blob: 30f8659c5de0a5a800d1cf996d526a5a473ae62d [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o /dev/null
// XFAIL: linux,sun,darwin
union
foo
{
struct
{
char
A
,
B
;
}
X
;
int
C
;
};
union
foo V
=
{
{
1
,
2
}
};