]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.old-deja/g++.ext/arrnew2.C
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / arrnew2.C
1 // { dg-do run { xfail *-*-* } }
2 // { dg-options "-w -fpermissive" }
3
4 int *foo = new int[1](42); // { dg-bogus "" }
5 int main ()
6 {
7 return foo[0] != 42;
8 }