Thread overview
[Issue 672] New: Compiler endless loop with nested class object
Dec 10, 2006
d-bugmail
Dec 10, 2006
d-bugmail
Dec 27, 2006
d-bugmail
December 10, 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@digitalmars.com
        ReportedBy: wstring@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;
}


-- 

December 10, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=672


thomas-dloop@kuehne.cn changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE




------- Comment #1 from thomas-dloop@kuehne.cn  2006-12-10 14:35 -------


*** This bug has been marked as a duplicate of 635 ***


-- 

December 27, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=672





------- Comment #2 from bugzilla@digitalmars.com  2006-12-27 02:02 -------
Fixed DMD 0.178


--