(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
explicit-instantiation4.C
void f();

namespace A {
  template <class T> void f(T) { }
  using ::f;
  template void f(int);
}