[Issue 713] circular const definitions with module operator "." cause the compiler to segfault

2009-05-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=713


Don  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||clugd...@yahoo.com.au
 Resolution||FIXED




--- Comment #2 from Don   2009-05-14 04:56:00 PDT ---
Fixed DMD2.030 and 1.045

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 713] circular const definitions with module operator "." cause the compiler to segfault

2009-04-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=713





--- Comment #1 from clugd...@yahoo.com.au  2009-04-02 15:03 ---
On D1, this now generates a "Stack overflow".
On D2, the equivalent code:

enum int a = .b;
enum int b = a;

hangs.


--