@ntrel created dlang/dlang.org pull request #3568 "Fix Issue 23807 - FunctionLiteral spec should not use Parameters" fixing this issue:
- Fix Issue 23807 - FunctionLiteral spec should not use Parameters
A literal's parameter can just be a FundamentalType or `...` but in all
other cases an identifier is required.
Also use list for description and add item for omitted parameter types.
function.dd: Merge two variants of ParameterList grammar using OPT.
https://github.com/dlang/dlang.org/pull/3568
Comment #2 by nick — 2023-06-12T15:27:54Z
The parsing is actually valid with Parameters, just the semantics are different. Documented that parameter types can be omitted here:
https://github.com/dlang/dlang.org/pull/3600