dmd/compiler/test/fail_compilation/mixin_template.d
2022-07-09 18:53:07 +02:00

10 lines
183 B
D

/*
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;