Merged from RELEASE_16.
[oota-llvm.git] / test / CFrontend / 2003-08-30-AggregateInitializer.c
1 // RUN: %llvmgcc -S %s -o /dev/null
2
3 // XFAIL: *
4
5 struct istruct {
6   unsigned char C;
7 };
8
9 struct foo {
10   unsigned int I:1;
11   struct istruct J;
12   unsigned char L[1];
13   unsigned int K:1;
14 };
15
16 struct foo F = { 1, { 7 }, { 123 } , 1 };
17
18