January 17, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1788

           Summary: dmd segfaults without info
           Product: D
           Version: 2.009
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: diboss@hotmail.com


The following code causes dmd to segfault:

void main()
{
        string a = "abc";
        double b = 7.5;

        a ~= ", " ~= b;
}

It's the concat. that's causing the problem. DMD simply segfaults without telling what/where the problem is.


-- 

February 16, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=1788


bugzilla@digitalmars.com changed:

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




------- Comment #1 from bugzilla@digitalmars.com  2008-02-16 06:08 -------
Fixed dmd 1.026 and 2.010


--