summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.bugs/900406_01.C
blob: 93e7af3f378744b50bc8052217c079c9ffa47874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// g++ 1.37.1 bug 900406_01

// The following code causes g++ to segfault.

// cfront 2.0 passes this test.

// keywords: segfault, operator new, array types, array bounds

void function0 ()
{
  new int[];		// ERROR - causes segfault
}

void function1 ()
{
  new int (*)[];	// ERROR - no size specified 
}

int main () { return 0; }