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: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
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
--