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} };