www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 5516] New: .init is broken for fields

reply d-bugmail puremagic.com writes:
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 puremagic.com
        ReportedBy: andrej.mitrovich gmail.com



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: -------
Feb 01 2011
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=5516


Andrej Mitrovic <andrej.mitrovich gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



18:31:55 PDT ---
Invalid, code should be:
Foo.init.b

There's another report for the bug in docs so I'm closing this down.

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