blob: b805f78bd1f74f6970b3ff4952886cd5f98c71cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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]; // ERROR -
}
int main () { return 0; }
|