// { dg-do compile { target c++20 } } // Test the types of atomic constraints // req5.C struct fool { constexpr fool operator&&(fool) const { return {}; } constexpr fool operator||(fool) const { return {}; } }; template constexpr fool p1() { return {}; } template constexpr fool p2() { return {}; } template concept Bad = p1() && p2(); // { dg-error "bool" } template requires Bad void bad(T x) { } void driver_2() { bad(0); // { dg-message "" } } // req6.C struct X { }; int operator==(X, X) { return 0; } template concept C1 = (X()); // { dg-error "bool" } template concept C2 = (X() == X()); // { dg-error "bool" } template requires C1 void h1(T) { } template requires C2 void h2(T); void driver_3() { h1(0); // { dg-message "" } h2(0); // { dg-message "" } } // req7.C template struct boolean_constant { constexpr operator bool() const { return B; } }; using true_type = boolean_constant; using false_type = boolean_constant; template struct dependent_true : true_type { }; template struct dependent_false : false_type { }; template requires (dependent_true{}) // { dg-message "bool" } struct S5 { }; template requires (dependent_false{}) // { dg-message "bool" } struct S6 { }; S5 x5; // { dg-error "template constraint failure" } S6 x6; // { dg-error "template constraint failure" }