Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / init / new6.C
blobecbafd13e6c0a1c85141807fa55278d8e29cdc50
1 // { dg-options "-fkeep-inline-functions" }
3 struct B1 { virtual ~B1(); };
4 struct B2 { virtual ~B2(); };
5 struct D : B1, B2 {};
6 struct X : D      { X (); };
8 X::X () { new int; }