October 26, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2430

           Summary: Internal error: ..\ztc\evalu8.c 2093
           Product: D
           Version: 1.030
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: adam@pohorecki.pl


DMD gives me this error a lot:
Internal error: ..\ztc\evalu8.c 2093

I have no idea why. I tried reinstalling DMD and tango in many different configurations, but nothing seems to help.

For example this application gives the aforementioned error:
module hello;
import tango.text.convert.Integer;
import tango.io.Stdout;
void main() {
        char [] t = "123";
        int x = toInt(t);
}

but this does not:
module hello;
import tango.text.convert.Integer;
import tango.io.Stdout;
void main() {
        char [] t = "123";
//      int x = toInt(t);
}

What could be causing that? Any ideas?

Thanks for any help,
Adam


-- 

May 08, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2430


clugdbug@yahoo.com.au changed:

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




------- Comment #1 from clugdbug@yahoo.com.au  2009-05-08 05:20 -------
This WAS a compiler bug. But without a test case it's impossible to know if
it's been fixed. It certainly doesn't happen with a recent Tango and recent
DMD.
Closing as invalid; reopen only if you have a test case. (Tango and Phobos2
should NOT be used in test cases: they change so often. It's best to even avoid
Phobos1).


--