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

template<int> struct A
{
  void foo();
};

struct B
{
  template<int N> friend void A<N>::A::foo();
};