(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
friend1.C
namespace N {
  template <typename T>
  static void f ();

  struct S {
    friend void N::f<int> ();
    static void f (int);
  };
}