blob: b088da88e3addc3b7f2fe03145eca5639ae8fbdf [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/mixin_template.d(10): Error: mixin `mixin_template.f!1` - `f` is a function, not a template
---
*/
string f() {
return "int i;";
}
mixin f!1;