[Issue 11003] Improve .di generation

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Sun May 3 22:07:45 PDT 2015


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

--- Comment #3 from Kenji Hara <k.hara.pg at gmail.com> ---
One more case:

enum isInt(T) = is(T == int);

For that, the generated di still uses old verbose style:

template isInt(T)
{
    enum isInt = is(T == int);
}

-->
https://github.com/D-Programming-Language/dmd/pull/4629

--


More information about the Digitalmars-d-bugs mailing list