aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/new-array.C
blob: 5737c99bcd03b11dff1149a5e6a9bbf3259ee6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do assemble  }
// GROUPS passed operator-new
typedef struct {
	int a;
} AStruct;

void MakeBug() {
	AStruct *job;

	// This used to crash, it should now give error(s).
	job = new AStruct[];// { dg-error "" } .*

	job = new AStruct;
}

int main () {
	MakeBug();
}