https://issues.dlang.org/show_bug.cgi?id=20053

Basile-z <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Basile-z <[email protected]> ---
Attempt : https://github.com/Basile-z/dmd/pull/3

But there are problems. The MixinExpression takes expressions as argument but
among the stuff that are supposed to be aliased there are not only expressions,
only types that look like expressions work. Concretely

A simple thing like

  alias A1 = mixin("int");

Does not work and instead

  alias Int = int;
  alias A1 = mixin("Int");

must be used.

Otherwise the change is really simple (current work is less than an hour) so I
may propose it anyway.

--

Reply via email to