https://issues.dlang.org/show_bug.cgi?id=16025
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] --- Please provide a full test case. As it is, your code fails because myTemplate isn't defined. When I add `template myTemplate() {}`, then it compiles. That's expected. You may be mixing up template mixins with string mixins. `mixin myTemplate;` is a template mixin. `mixin(myTemplate)` is a string mixin. They do different things. --
