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

struct Foo { 
  template<class T> int func() const; 
}; 

class Bar { 
  friend int Foo::func<int>() const;
};