April 20, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2018

           Summary: Template with a mixin doesn't work as expected
           Product: D
           Version: 2.012
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: bartosz@relisoft.com


The following template doesn't work:
template ToType (string s)
{
    mixin ("alias " ~ s ~ " ToType ;");
}

ToType!("int") x;

I had to use the following workaround:

template ToTypeHelper (string s)
{
    mixin ("alias " ~ s ~ " type;");
}

template ToType (string s)
{
    alias ToTypeHelper!(s).type ToType;
}


-- 

November 13, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2018


samukha@voliacable.com changed:

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




------- Comment #1 from samukha@voliacable.com  2008-11-13 01:15 -------
Works in dmd 2.020


--