October 07, 2018
https://issues.dlang.org/show_bug.cgi?id=19290

--- Comment #1 from Basile B. <b2.temp@gmx.com> ---
main.d for the reproduction

```
void main()
{
    import dparse.parser, dparse.ast, dparse.lexer, dparse.rollback_allocator;
    import std.file;

    class Visitor : ASTVisitor {}

    LexerConfig config;
    StringCache cache = StringCache(16);
    RollbackAllocator rba;

    auto src = readText(r"libdparse\src\dparse\parser.d");
    auto tok = getTokensForParser(src, config, &cache);
    auto mod = parseModule(tok, "stdin", &rba);
    auto vis = new Visitor;
    vis.visit(mod);
}
```

--
January 02, 2019
https://issues.dlang.org/show_bug.cgi?id=19290

Basile B. <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #2 from Basile B. <b2.temp@gmx.com> ---
problem is gone since DMD 2.084

--