// PR c++/111485 // { dg-do compile { target c++20 } } template constexpr bool always_true = true; template concept C = always_true; template requires C class TT> void f(); template requires C struct A; int main() { f(); f(); // { dg-error "no match|constraint mismatch" } }