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

           Summary: Built-in opAssign implicitly defined should call
                    field's opAssign
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: k.hara...@gmail.com


--- Comment #0 from Kenji Hara <k.hara...@gmail.com> 2011-06-26 10:47:27 PDT ---
Following should compile.
----
struct X
{
    int n;
    const void opAssign(const X rhs) {}
}
struct S
{
    int n;
    const(X) x;
}
void main()
{
    S s;
    s = s;
}
----
test.d(14): Error: variable test.main.s cannot modify struct with immutable
members
----

S has implicitly defined opAssign, but it does not call field x's opAssign.

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

Reply via email to