1 2 3 4 5 6 7 8 9 10
// PR c++/98614 // { dg-do compile { target c++20 } } template<class T> struct A; template<class T> requires true struct A<T> { A(A<T> const&) = default; };