[Issue 2430] New: Internal error: ..\ztc\evalu8.c 2093

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Oct 25 17:00:47 PDT 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 at digitalmars.com
        ReportedBy: adam at 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


-- 



More information about the Digitalmars-d-bugs mailing list