// { dg-do compile { target c++20 } } template concept C = true; template struct A { template U> void f(); // #1 template U> void f(); // #2 template U> void f(); // #3 }; constexpr int n = sizeof(int); template<> template U> void A::f() { } // matches #1 template<> template U> void A::f() { } // matches #2 template<> template U> void A::f() { } // no match { dg-error "match" } template<> template void A::f() requires C { } // shouldn't match #3 // { dg-error "match" "" { xfail *-*-* } .-1 }