April 19
https://issues.dlang.org/show_bug.cgi?id=24512

          Issue ID: 24512
           Summary: DMD writeln with malloc allocated slice crashes lld
           Product: D
           Version: D2
          Hardware: x86
                OS: Windows
            Status: NEW
          Severity: normal
          Priority: P1
         Component: dmd
          Assignee: nobody@puremagic.com
          Reporter: msnmancini@hotmail.com

```d
void main()
{
        import core.stdc.stdlib;
    import std.stdio;
    char[] s = (cast(char*)malloc(64))[0..64];
    s[] = 'a';
    writeln(s);
    s[] = 'b';
    writeln(s);
}
```

Having support for lld linker would be actually nice since one would be able to have a faster linker support for DMD.

--