aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.ext/arrnew2.C
blob: c6a967ccc38516e9a81d3b14bb3de317270afc4f (plain)
1
2
3
4
5
6
7
8
// { dg-do run }
// { dg-options "-w -fpermissive" }

int *foo = new int[1](42); // { dg-bogus "" }
int main ()
{
  return foo[0] != 42;
}