Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / lookup / ptrmem1.C
blob5bdef2621fea2f730ea634fa59439b346d3fe7c0
1 struct A {
2   virtual void f ();
3 };
5 struct B : public A {
6 };
8 struct C : public A {
9 };
11 struct D : public B, C {
12   virtual void f (); 
15 void (D::*p)() = &D::f;