Thread overview
[Issue 14947] std.traits: ParameterIdentifierTuple on an 'interface' not working
Sep 02, 2015
Vladimir Panteleev
Sep 02, 2015
Vladimir Panteleev
Sep 03, 2015
Luís Marques
Sep 03, 2015
Luís Marques
September 02, 2015
https://issues.dlang.org/show_bug.cgi?id=14947

Vladimir Panteleev <thecybershadow@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull
                 CC|                            |thecybershadow@gmail.com

--- Comment #1 from Vladimir Panteleev <thecybershadow@gmail.com> ---
https://github.com/D-Programming-Language/phobos/pull/3620

--
September 02, 2015
https://issues.dlang.org/show_bug.cgi?id=14947

Vladimir Panteleev <thecybershadow@gmail.com> changed:

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

--- Comment #2 from Vladimir Panteleev <thecybershadow@gmail.com> ---
(In reply to Vladimir Panteleev from comment #1)
> https://github.com/D-Programming-Language/phobos/pull/3620

Apparently that was due a typo, and that PR is for another bug.

--
September 03, 2015
https://issues.dlang.org/show_bug.cgi?id=14947

Luís Marques <luis@luismarques.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |luis@luismarques.eu
         Resolution|---                         |FIXED

--- Comment #3 from Luís Marques <luis@luismarques.eu> ---
If in the example this line:

    alias typeof(funcs[0]) func;

...is replaced with this line:

    alias funcs[0] func;

then it works fine. If you think that's not the correct solution please reopen the issue.

--
September 03, 2015
https://issues.dlang.org/show_bug.cgi?id=14947

Luís Marques <luis@luismarques.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|FIXED                       |INVALID

--