[Issue 672] New: Compiler endless loop with nested class object
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Dec 9 18:13:13 PST 2006
http://d.puremagic.com/issues/show_bug.cgi?id=672
Summary: Compiler endless loop with nested class object
Product: D
Version: 0.177
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: wstring at gmail.com
The DMD 0.177 for Linux made a endless loop when creating nested class object:
import std.stdio;
class A
{
class B
{
}
}
void main()
{
A.B c = new A.B;
}
--
More information about the Digitalmars-d-bugs
mailing list