(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
inherit9.C
// PR c++/58273

class A {};
class B
{
  int goo(A);
};
template<typename E>
class D : public B
{
  void foo(A t)
  {
    int const i(B::goo(t));
  }
};