blob: 9559d5b37b79598fbbde5d18fa52f2730805fa73 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
// 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() {}