// { dg-do compile { target c++20 } } // { dg-skip-if "requires hosted libstdc++ for cassert" { ! hostedlib } } #include template concept C = __is_class(T); template concept D = C && __is_empty(T); struct X { } x; struct Y { int n; } y; int called = 0; template struct S { void f() requires C; }; template<> void S::f() { called = 1; } // { dg-error "match" }