[Issue 7427] New: Cannot use templated opAssign when there is a member whose type has a postblit.

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Feb 2 12:35:56 PST 2012


http://d.puremagic.com/issues/show_bug.cgi?id=7427

           Summary: Cannot use templated opAssign when there is a member
                    whose type has a postblit.
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: kennytm at gmail.com


--- Comment #0 from kennytm at gmail.com 2012-02-02 12:35:55 PST ---
Test case:

------------------------------
struct K7427
{
    this(this) {}
}

struct S7427
{
    K7427 x;
    void opAssign()(int y) {}
}
------------------------------

Compile with 'dmd -c test7427.d' gives:

    test7427.d(7): Error: function test7427.S7427.opAssign conflicts with
template test7427.S7427.opAssign() at test7427.d(9)

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


More information about the Digitalmars-d-bugs mailing list