(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
inherit/
using7.C
// PR c++/51889

struct A {
  void f();
};

template <class T>
struct B: A
{
  using A::f;
  void f();
};