[Issue 11492] Executable with thread termination crashes (worked in 2.63, works on Windows)

d-bugmail at puremagic.com d-bugmail at puremagic.com
Wed Nov 13 13:49:46 PST 2013


https://d.puremagic.com/issues/show_bug.cgi?id=11492



--- Comment #11 from Martin Nowak <code at dawg.eu> 2013-11-13 13:49:19 PST ---
Apparently it crashes in the Variant code when it tests for conversion.
Can you try the following small program with your setup?

cat > bug.d << CODE
import std.concurrency, std.variant, std.stdio;

void main()
{
    Variant v;
    v = new OwnerTerminated(thisTid);
    if (v.convertsTo!Tid())
        writeln("does convert");
    else
        writeln("doesn't convert");
}
CODE

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list