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

           Summary: disabled postblit needs to be derived from fields
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: d...@dawgfoto.de


--- Comment #0 from d...@dawgfoto.de 2012-02-24 13:41:15 PST ---
cat > bug.d << CODE
struct S
{
    NonCopyable impl;
}

struct NonCopyable
{
    @disable this(this);
}

void main()
{
    S s;
    s = S();
}
CODE

dmd bug

Linker error: undefined reference to `_D3bug11NonCopyable10__postblitMFZv'
--------

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

Reply via email to