2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / new4.C
blob7b136dbf3978da5f6d781dbf3a211521da01de8a
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
4 struct S {
5   S();
7   virtual int f() {
8     new S[+f()];
9     return 0;
10   }