blob: c712d727235f2d078e6caaa88b76822a23357968 [file] [log] [blame]
// { dg-do compile { target c++20 } }
template<class T>
bool f(T x) {
return requires(T x) {
++x;
};
}
int main() {
f(3);
return 0;
}