// { dg-do compile { target c++20 } } template bool f(T x) { return requires(T x) { ++x; }; } int main() { f(3); return 0; }