January 20, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2595

           Summary: template ctors crash compiler
           Product: D
           Version: 2.023
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: silvioricardoc@gmail.com


Compiler segfaults when processing the following template if it was mixed in a
struct. It doesn't if the mixin happened inside a class.
It complains that Templ.this(int) is not a ctor (and that, hence, you can't
forward to this(double) from there) before crashing.

template Templ () {
    this(int i) { this(0.0); }
    this(double d) { }
}

class C { mixin Templ; } // OK
struct S { mixin Templ; } // Crashes in Templ

void main() { }


-- 

April 01, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2595


bugzilla@digitalmars.com changed:

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




------- Comment #1 from bugzilla@digitalmars.com  2009-04-01 13:52 -------
Fixed DMD 2.027


--