[Issue 18996] Inserting a struct into an std.container Array causes SIGILL(4). Illegal Instruction.

d-bugmail at puremagic.com d-bugmail at puremagic.com
Mon Jun 18 04:57:05 UTC 2018


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

--- Comment #1 from Paul Crane <viserion.thrall at gmail.com> ---
Actually, all it takes is:

import std.container;

void main(string[] arguments)
{
    Array!string str;
    str.insert("hello");
}

Up to      2.078.1: Success and no output
Since      2.079.0: Failure with output: Error: program killed by signal 4

Either I'm missing something or this is a really bad bug. I would think if it
was a bug how could it have gone unnoticed?

--


More information about the Digitalmars-d-bugs mailing list