aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.bugs/900211_03.C
blob: b6144000fb40c22cfdac004e8eccfc82f1d2809b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }
// g++ 1.36.1 bug 900211_03

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

// Cfront 2.0 passes this test.

// keywords: segfault, operator new, arrays, undeclared, array bound

void function ()
{
  char* new_base = new char[x];		// { dg-error "" } 
}

int main () { return 0; }