blob: 9af533dfa414adae25aa377d1e4e98200fc008fb [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3// This caused generation of the following type name:
4// %Array = uninitialized global [10 x %complex int]
5//
6// which caused problems because of the space int the complex int type
7//
8
9struct { int X, Y; } Array[10];
10
11void foo() {}