// PR c++/99850 // P1102R2 - Down with ()! // { dg-do compile { target c++23 } } auto l = [] requires true -> void {}; template concept C = true; auto m = [] requires (C && ...) -> void {};