blob: 576958442aece266683da089458777a4b2fc7865 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o /dev/null
2
3union foo {
4 struct { char A, B; } X;
5 int C;
6};
7
8union foo V = { {1, 2} };