April 28, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2055

           Summary: (ICE) Compiler crash on struct initializer with too many
                    elements
           Product: D
           Version: 2.013
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Keywords: ice-on-invalid-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: brunodomedeiros+bugz@gmail.com


Compiler crash on struct initializer with too many elements:
---- ----

struct Struct {
        char* chptr;
}

void main()
{
        char ch = 'd';
        invariant Struct iStruct = {1, &ch};
}


-- 

May 22, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2055


bugzilla@digitalmars.com changed:

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




------- Comment #1 from bugzilla@digitalmars.com  2008-05-22 05:02 -------
Fixed dmd 1.030 and 2.014


--