April 20, 2008 [Issue 2018] New: Template with a mixin doesn't work as expected | ||||
---|---|---|---|---|
| ||||
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 [Issue 2018] Template with a mixin doesn't work as expected | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | 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 -- |
Copyright © 1999-2021 by the D Language Foundation