Thread overview
[Issue 1736] New: dmd segv
Dec 17, 2007
d-bugmail
Dec 30, 2007
d-bugmail
Dec 30, 2007
d-bugmail
Jan 01, 2008
d-bugmail
Jan 02, 2008
d-bugmail
December 17, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1736

           Summary: dmd segv
           Product: D
           Version: 2.008
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Keywords: ice-on-invalid-code
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: davidl@126.com


import std.stdio;
void main()
{
        try
        {
        }
        catch(Exception e)
        {
                writefln("error:"~e);
        }
}


-- 

December 30, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1736


bugzilla@digitalmars.com changed:

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




------- Comment #1 from bugzilla@digitalmars.com  2007-12-30 00:40 -------
I cannot reproduce this problem with dmd 2.008.


-- 

December 30, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1736


spam@extrawurst.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spam@extrawurst.org
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |




------- Comment #2 from spam@extrawurst.org  2007-12-30 08:00 -------
i can reproduce it. dmd crashes here too with the exact same code as shown above.


-- 

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





------- Comment #3 from gide@nwawudu.com  2008-01-01 10:15 -------
This might be the same bug as 1702, as the following code also crashes DMD.

void main() {
        string a = "Hello " ~ 10;
}


-- 

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


davidl@126.com changed:

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




------- Comment #4 from davidl@126.com  2008-01-01 21:02 -------
Fixed in dmd 2.009


--