Thread overview
[Issue 20060] new syntax for function type aliases rejects return types that contain suffixes
Jul 17, 2019
Basile-z
Jul 17, 2019
Basile-z
Jul 25, 2019
anonymous4
July 17, 2019
https://issues.dlang.org/show_bug.cgi?id=20060

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|new alias syntax reject     |new syntax for function
                   |return types containing     |type aliases rejects return
                   |suffixes                    |types that contain suffixes

--
July 17, 2019
https://issues.dlang.org/show_bug.cgi?id=20060

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

--- Comment #1 from Basile-z <b2.temp@gmx.com> ---
Actually the grammar doesn't include Type2 (i.e the suffixes) so there's no
"fraud" on the specs and what the specs say is handled.
But really Type2 should be considered otherwise the old syntax is not
interchangeable with the new.

--
July 25, 2019
https://issues.dlang.org/show_bug.cgi?id=20060

anonymous4 <dfj1esp02@sneakemail.com> changed:

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

--- Comment #2 from anonymous4 <dfj1esp02@sneakemail.com> ---
alias F8 = int[] function();

--