aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2003-01-30-UnionInit.c
blob: 4fc2717346ffec1b0e57d34d35079f3e37ae2260 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null

// XFAIL: linux,sun,darwin

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

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