mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
183 B
D
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;
|