PR middle-end/77674
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using34.C
blob79c019d0216feedc1bc09e07f4bded1ea1830e4f
1 // { dg-do compile }
3 struct A { int f (); };
4 struct B : A
6   using A::f;
7   struct f {};
8   void g() { f(); struct f ff; }
9   struct f ff;