summaryrefslogtreecommitdiff
path: root/test/CFrontend/2002-01-24-ComplexSpaceInType.c
blob: 41c87d0dcb6939d967a864dbb4654a3d4985beaa (plain)
1
2
3
4
5
6
7
8
9
// 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() {}