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