summaryrefslogtreecommitdiff
path: root/test/CFrontend/2003-01-30-UnionInit.c
blob: b33ae0214a6db33476c976c6a36b20e41bdc9567 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc -S %s -o /dev/null
// XFAIL: llvmgcc3

union foo {
  struct { char A, B; } X;
  int C;
};

union foo V = { {1, 2} };