Thread overview
[Issue 15379] "final" attribute on function parameter
Nov 24, 2015
Johan Engelen
Dec 24, 2017
Basile B.
Jul 24, 2022
Dlang Bot
Jul 29, 2022
RazvanN
November 24, 2015
https://issues.dlang.org/show_bug.cgi?id=15379

Johan Engelen <goejendaagh@zonnet.nl> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |goejendaagh@zonnet.nl

--
December 24, 2017
https://issues.dlang.org/show_bug.cgi?id=15379

Basile B. <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Blocks|                            |10233


Referenced Issues:

https://issues.dlang.org/show_bug.cgi?id=10233
[Issue 10233] [Tracker] Grammar issues
--
July 24, 2022
https://issues.dlang.org/show_bug.cgi?id=15379

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 #3354 "Fix Issue 15379 - "final" attribute on function parameter" fixing this issue:

- Fix Issue 15379 - "final" attribute on function parameter

  `final` is not allowed in D2.
  ```d
  void foo(final int a){} // error!
  ```
  ```
  finalpar.d(1): Error: variable `finalpar.foo.a` cannot be `final`, perhaps
you meant `const`?
  ```

https://github.com/dlang/dlang.org/pull/3354

--
July 29, 2022
https://issues.dlang.org/show_bug.cgi?id=15379

RazvanN <razvan.nitu1305@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |razvan.nitu1305@gmail.com
         Resolution|---                         |FIXED

--