diff --git a/source/expressions.tex b/source/expressions.tex index 2bfc4057de..2905f851ad 100644 --- a/source/expressions.tex +++ b/source/expressions.tex @@ -2345,9 +2345,10 @@ \grammarterm{parameter-declaration-clause} is followed by \keyword{constexpr} or \keyword{consteval}, or it is constexpr-suitable\iref{dcl.constexpr}. -It is an immediate function\iref{dcl.constexpr} +It is an immediate function\iref{expr.const} if the corresponding \grammarterm{lambda-expression}{'s} -\grammarterm{parameter-declaration-clause} is followed by \keyword{consteval}. +\grammarterm{parameter-declaration-clause} is followed by \keyword{consteval}; +otherwise, it is an immediate-escalating function. \begin{example} \begin{codeblock} auto ID = [](auto a) { return a; };