[Issue 13629] New: Field postblit can't be generated for const field

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Fri Oct 17 06:56:28 PDT 2014


https://issues.dlang.org/show_bug.cgi?id=13629

          Issue ID: 13629
           Summary: Field postblit can't be generated for const field
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: DMD
          Assignee: nobody at puremagic.com
          Reporter: wazar.leollone at yahoo.com

module test1;

struct A
{
    this(this)
    {
    }
}

struct B
{
    A a;
}


struct C
{
    const B b;
}

void main()
{
    C c;
}

This code raises an error: 
Error: mutable method test1.B.__fieldPostBlit is not callable using a const
object

--


More information about the Digitalmars-d-bugs mailing list