blob: 44c077b16a1f05f507ea1517dbf35ba04321c753 [file] [log] [blame]
// { dg-do compile { target c++2a } }
// { dg-additional-options "-fconcepts-ts" }
template<class X>
concept bool C() {
return requires(X x, bool b) {
requires b; // { dg-error "not a constant expression" }
x++;
};
}
int main() {
C<int>();
return 0;
}