1 2 3 4 5 6 7 8 9 10
// PR c++/101182 // { dg-do compile { target concepts } } int a; void g(bool); bool f() { g(requires { a++; }); return requires { a++; }; }