blob: 4fc2717346ffec1b0e57d34d35079f3e37ae2260 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Tanya Lattner12ff9682004-11-06 20:38:27 +00003// XFAIL: linux,sun,darwin
Chris Lattner20121902003-01-30 17:34:04 +00004
5union foo {
6 struct { char A, B; } X;
7 int C;
8};
9
10union foo V = { {1, 2} };