Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / abi / dtor2.C
blob6b89cc8eae0582f9c87bc79cbdfdb05b6de7f61a
1 // { dg-do compile }
2 // { dg-options "-Wabi -fabi-version=1" }
4 struct A {
5   virtual void a ();
6 };
8 struct B {
9   virtual ~B ();
12 struct C : public A, public B { // { dg-warning "virtual" }
13   virtual void c ();