[Issue 2520] ICE on template mixin typedef

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2520

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|unspecified |D2

--


[Issue 2520] ICE on template mixin typedef

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


Don  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




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


[Issue 2520] ICE on template mixin typedef

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


Don  changed:

   What|Removed |Added

 CC||clugd...@yahoo.com.au




--- Comment #2 from Don   2009-05-13 13:03:48 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 2520] ICE on template mixin typedef

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


clugd...@yahoo.com.au changed:

   What|Removed |Added

   Keywords||patch




--- Comment #1 from clugd...@yahoo.com.au  2009-05-04 09:28 ---
Patch against DMD2.029.

Index: e2ir.c
===
--- e2ir.c  (revision 24)
+++ e2ir.c  (working copy)
@@ -3603,7 +3603,7 @@

cdfrom = e1->type->isClassHandle();
cdto   = t->isClassHandle();
-   if (cdfrom->isInterfaceDeclaration())
+   if (cdfrom && cdfrom->isInterfaceDeclaration())
{
rtl = RTLSYM_INTERFACE_CAST;
if (cdfrom->isCPPinterface())


--