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

--- Comment #1 from [email protected] ---
I was told that this code reproduces the issue:
import std.conv : emplace;

struct AA
{
   ~this()
   {
   }
}

extern(C) void main()
{
   AA aa;
   emplace(&aa, AA.init);
}

--

Reply via email to