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

           Summary: .init is broken for fields
           Product: D
           Version: unspecified
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: andrej.mitrov...@gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrov...@gmail.com> 2011-02-01 
17:43:35 PST ---
struct Foo
{
    int a;
    int b = 7;
}

void main()
{
    Foo foo;
    assert(foo.b == 7);
    assert(foo.b.init == 7);  // assertion failure
}

According to docs:
.init produces a constant expression that is the default initializer. If
applied to a type, it is the default initializer for that type. If applied to a
variable or *field*, it is the default initializer for that variable or field.

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

Reply via email to