80 col violation.
[oota-llvm.git] / test / CFrontend / 2004-01-01-UnknownInitSize.c
1 // RUN: %llvmgcc -S %s -o /dev/null
2 // XFAIL: llvmgcc3
3
4 /*
5  * This regression test ensures that the C front end can compile initializers
6  * even when it cannot determine the size (as below).
7 */
8 struct one
9 {
10   int a;
11   int values [];
12 };
13
14 struct one hobbit = {5, {1, 2, 3}};
15