I think this is a reasonable use case:
auto A(R, S)(R a,S b) {return a+b;}
auto B(alias f)(){return f(1, 1.0);}
void main{writeln(B!(A!int)());}
Yuxuan Shui via Digitalmars-d Wed, 04 Nov 2015 15:12:07 -0800
I think this is a reasonable use case:
auto A(R, S)(R a,S b) {return a+b;}
auto B(alias f)(){return f(1, 1.0);}
void main{writeln(B!(A!int)());}