Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / debug / using1.C
blobd3168fc6c1c7d01fe841f5d763dcb88323c16780
1 // PR c++/19406
2 // { dg-do compile }
4 struct A
6   virtual int foo();
7   double d;
8 };
10 struct B : public A
12   A::d;
15 B b;