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