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

Walter Bright <[email protected]> changed:

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

--- Comment #1 from Walter Bright <[email protected]> ---
This is coming from this line in the C parser:

    if (isalias)
    {
        auto ad = new AST.AliasDeclaration(token.loc, id, dt);
        ad.adFlags |= ad.hidden; // do not print when generating .di files
        s = ad;
    }


https://github.com/dlang/dmd/blob/master/compiler/src/dmd/cparse.d#L1937

--

Reply via email to