llvm-6502/test/CFrontend/2002-01-24-ComplexSpaceInType.c

10 lines
234 B
C
Raw Normal View History

// This caused generation of the following type name:
// %Array = uninitialized global [10 x %complex int]
//
// which caused problems because of the space int the complex int type
//
struct { int X, Y; } Array[10];
void foo() {}