www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 6257] New: Struct postblit not called in one case

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=6257

           Summary: Struct postblit not called in one case
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: wrong-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bearophile_hugs eml.cc



With DMD 2.053 the second assert of this program fires, is this a DMD bug?


struct Foo {
   int[] data;

   this(int n) {
       data.length = n;
   }

   this(this) {
       data = data.dup;
   }
}
void main() {
   Foo f1, f2;
   f1 = Foo(1);
   f2 = f1;
   assert(f1.data.ptr != f2.data.ptr); // OK
   f1 = f2 = Foo(1);
   assert(f1.data.ptr != f2.data.ptr); // asserts
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jul 06 2011
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=6257


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE



The bug mechanism is:

struct Foo {
   int[] data;
   this(int n) {
       data.length = n;
   }
   this(this) {
       data = data.dup;
   }

   // Implicitly generated by compiler
   ref Foo opAssign(Foo rhs) { ... }
}

void main() {
   ...
   f1 = f2 = Foo(1);
   // is translated to:
   f1.opAssign(f2.opAssign(Foo(1)));  // f2.opAssign returns ref Foo
}

"Postblit not called on ref returned object" is same as bug 6119.
Then, this was a dup of it.

*** This issue has been marked as a duplicate of issue 6119 ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 10 2012
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=6257




Sorry, I missed. This is a dup of bug 6199.

*** This issue has been marked as a duplicate of issue 6199 ***

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