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

Mihails Strasuns <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mihails.strasuns.contractor
                   |                            |@sociomantic.com

--- Comment #4 from Mihails Strasuns 
<[email protected]> ---
This sample is sufficient to reproduce the crash for me with -profile=gc :

---
void main ( )
{
    import core.thread;

    auto t = new Thread({
        auto x = new int;
    }).start();
}
```

--

Reply via email to