OSDN Git Service

PR debug/34895
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / debug / using1.C
1 // PR c++/19406
2 // { dg-do compile }
3
4 struct A
5 {
6   virtual int foo();
7   double d;
8 };
9
10 struct B : public A
11 {
12   A::d;
13 };
14
15 B b;