(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
concepts/
pr67544.C
// { dg-do compile { target c++11 } }
// { dg-options "-fconcepts" }

template <typename T> struct A
{
  struct B;
};

struct C
{
  template<typename T> friend struct A<T>::B;
};