[Issue 1130] New: Internal error: ..\ztc\gflow.c 1334
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Apr 12 09:32:44 PDT 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1130
Summary: Internal error: ..\ztc\gflow.c 1334
Product: D
Version: 1.011
Platform: PC
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: chris at dprogramming.com
Bug introduced in DMD v1.011 preventing my project from compiling with this
compiler version.
Compiling with -v the error spits out after "function platform" for code
similar to this, although this code tested by itself doesn't error:
final class OperatingSystem
{
final:
this(int platId, int ver)
{
this.platId = platId;
this.vers = ver;
}
int platform()
{
return platId;
}
int ver()
{
return vers;
}
private:
int platId;
int vers;
}
--
More information about the Digitalmars-d-bugs
mailing list