blob: 79c019d0216feedc1bc09e07f4bded1ea1830e4f [file] [log] [blame]
// { dg-do compile }
struct A { int f (); };
struct B : A
{
using A::f;
struct f {};
void g() { f(); struct f ff; }
struct f ff;
};