(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
inherit3.C
template <typename T>
struct set {
  void insert (const T&);
  template <class X>
  void insert  (X, X);
};

struct C : public set<int> {
  void f (const int i) {
    insert (i);
  }
};