www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2018] New: Template with a mixin doesn't work as expected

reply d-bugmail puremagic.com writes:
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;
}


-- 
Apr 20 2008
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2018


samukha voliacable.com changed:

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





Works in dmd 2.020


-- 
Nov 12 2008