Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / abi / local1-a.cc
blob638479e7459c7ca5b125610fc2247cc2f7fff065
1 struct B {
2 virtual void b() {}
3 };
5 static B* f() {
6 struct D : public B {
7 };
9 return new D;
12 B* g() {
13 return f();