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

// XFAIL: *

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

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