Here is a way that will work.

"Vlasov Roman" <vlasovroman...@yandex.ru> writes:
> I have this code
>
> mixin template Template(void function() func1, void function() func2)

mixin template Template(alias func1, alias func2)

> class SomeClass {
>       mixin Template!(&func, &func23);

        mixin Template!(func, func23);

--
dano

Reply via email to