April 25
https://issues.dlang.org/show_bug.cgi?id=24521

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Template value parameters   |Arguments supplied to
                   |are not visible outside     |template value parameters
                   |                            |are not visible from the
                   |                            |outside

--
April 25
https://issues.dlang.org/show_bug.cgi?id=24521

kinke <kinke@gmx.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kinke@gmx.net

--- Comment #1 from kinke <kinke@gmx.net> ---
This is clearly invalid to me. A template param needs to be aliased to make it accessible from the outside, like `struct S(int a) { alias blub = a; }`.

--