Thread overview
[Issue 826] New: ICE: is-expression with invalid template instantiation
Jan 10, 2007
d-bugmail
Jan 28, 2007
d-bugmail
Feb 15, 2007
d-bugmail
January 10, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=826

           Summary: ICE: is-expression with invalid template instantiation
           Product: D
           Version: 1.00
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: rueschi@giquadrat.de


class Foo(T)
{ this() { unknown_identifier; } }

void bar()
{ bool foobar = is( Foo!(int) ); }


C:\test>dmd -c defs.d
unknown_identifier
Internal error: e2ir.c 520


-- 

January 28, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=826


bugzilla@digitalmars.com changed:

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




------- Comment #1 from bugzilla@digitalmars.com  2007-01-27 18:53 -------
Fixed DMD 1.001


-- 

February 15, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=826





------- Comment #2 from thomas-dloop@kuehne.cn  2007-02-15 03:43 -------
Added to DStress as http://dstress.kuehne.cn/run/b/bug_e2ir_520_A.d http://dstress.kuehne.cn/compile/b/bug_e2ir_520_B.d


--