// { dg-do compile { target c++20 } } template concept integer = __is_same_as(T, int); template concept subst = requires (T x) { requires true; }; template concept c1 = requires { requires integer || subst; }; // { dg-message "in requirements" } static_assert(requires { requires true; }); static_assert(requires { requires false; }); // { dg-error "static assertion failed" } static_assert(requires { requires integer; }); static_assert(requires { requires integer; }); // { dg-error "static assertion failed" } static_assert(requires { requires c1; }); static_assert(requires { requires c1; }); static_assert(requires { requires c1; }); // { dg-error "static assertion failed" } static_assert(requires { requires subst; }); // { dg-error "cannot declare|failed" } static_assert(c1); static_assert(c1); static_assert(c1); // { dg-error "static assertion failed" } template void f1() { } template requires requires { requires integer || subst; } // { dg-message "in requirements" } void f2(); template struct data { template void f1() {} template requires requires { requires integer || subst; } // { dg-message in requirements" } void f2() {} static_assert(requires { requires subst; }); // { dg-error "forming reference|failed" } template constexpr bool test() { if constexpr (requires { requires subst; }) return true; else return false; } }; template constexpr bool check_for_resize(T &v, unsigned const n) { if constexpr (requires { v.resize(n); }) return true; else return false; } struct array { }; struct vector { void resize(int n); }; void test() { f1(); f1(); f1(); // { dg-error "no match" } f2(); f2(); f2(); // { dg-error "no match" } data x; x.f1(); x.f1(); x.f1(); // { dg-error "no matching function" } x.f2(); x.f2(); x.f2(); // { dg-error "no matching function" } data fail; data t; static_assert(t.test()); static_assert(t.test()); // { dg-error "static assertion failed" } vector v; static_assert(check_for_resize(v, 10)); array a; static_assert(!check_for_resize(a, 10)); }