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

Bastiaan Veelo <[email protected]> changed:

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

--- Comment #2 from Bastiaan Veelo <[email protected]> ---
No, this is no longer an issue.

Tested with v2.099.1 on Windows 10.

dmd mkdata.d
mkdata.exe > data.d
dmd -c data.d

-------------- mkdata.d ----------------------------------------------
import std.stdio, std.conv;

void main()
{
    writeln("module data;\n");
    write("const ubyte[] blob = [0");
    foreach (i; 1 .. 8_000_000)
        write(", ", (i % ubyte.max).to!string);
    writeln("];\n");
}

--

Reply via email to