http://d.puremagic.com/issues/show_bug.cgi?id=11194
--- Comment #1 from S�nke Ludwig <[email protected]> 2013-10-08 08:18:55 PDT --- Git HEAD requires a slightly extended test case: --- import std.container; struct S { int i = 1337; void* p; this(this) { assert(i == 1337); } ~this() { assert(i == 1337); } } void main() { Array!S arr; S s; arr ~= s; arr ~= s; } --- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
