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

// XFAIL: linux,sun,darwin

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

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