* g++.dg/debug/pr71432.C: Fail on AIX.
[official-gcc.git] / gcc / testsuite / g++.dg / debug / using1.C
blob7b13e53bb098dc4f9081ad34f44c97d180b49b11
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; // { dg-warning "deprecated" }
15 B b;