This patch supports parsing of the constexpr specifier on lambdas - and its inference from the lambda call operator's body.
i.e.
auto L = [] () constexpr { return 5; };
static_assert(L() == 5); // OK
It does not support evaluation of lambda's within constant expressions, which should follow this patch, when approved.
declspecifier -> decl_specifier