http://d.puremagic.com/issues/show_bug.cgi?id=10423
Nils <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |DUPLICATE --- Comment #1 from Nils <[email protected]> 2013-06-20 07:39:13 PDT --- Reduction shows that it's a duplicate of issue 2947: struct S { double[] _data = new double[1]; this(int ignored) {} } void main() { assert(S()._data !is S()._data); // passes assert(S(0)._data !is S(0)._data); // fails assert((new S)._data !is (new S)._data); // fails } *** This issue has been marked as a duplicate of issue 2947 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
