[Issue 5516] New: .init is broken for fields

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Feb 1 17:45:49 PST 2011


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: nobody at puremagic.com
        ReportedBy: andrej.mitrovich at gmail.com


--- Comment #0 from Andrej Mitrovic <andrej.mitrovich at 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: -------


More information about the Digitalmars-d-bugs mailing list