blob: b33ae0214a6db33476c976c6a36b20e41bdc9567 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o /dev/null
// XFAIL: llvmgcc3
union foo {
struct { char A, B; } X;
int C;
};
union foo V = { {1, 2} };