New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2002-01-24-ComplexSpaceInType.c
1 // This caused generation of the following type name:
2 //   %Array = uninitialized global [10 x %complex int]
3 //
4 // which caused problems because of the space int the complex int type
5 //
6
7 struct { int X, Y; } Array[10];
8
9 void foo() {}