(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
concepts-friend8.C
// { dg-do compile { target c++20 } }

template <class T>
struct A
{
  friend bool operator==(const A&, const A&) requires true = default;
};

int main()
{
  A<int>() == A<int>();
}