March 24, 2023
https://issues.dlang.org/show_bug.cgi?id=23807

Dlang Bot <dlang-bot@dlang.rocks> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull

--- Comment #1 from Dlang Bot <dlang-bot@dlang.rocks> ---
@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

--
June 12, 2023
https://issues.dlang.org/show_bug.cgi?id=23807

Nick Treleaven <nick@geany.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID

--- Comment #2 from Nick Treleaven <nick@geany.org> ---
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

--