Bug 672 – Compiler endless loop with nested class object
Status
RESOLVED
Resolution
DUPLICATE
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D1 (retired)
Platform
x86
OS
Linux
Creation time
2006-12-09T20:13:00Z
Last change time
2014-02-15T13:21:29Z
Assigned to
bugzilla
Creator
wstring
Comments
Comment #0 by wstring — 2006-12-09T20:13:09Z
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;
}
Comment #1 by thomas-dloop — 2006-12-10T14:35:50Z
*** This bug has been marked as a duplicate of 635 ***