On Wednesday, 23 March 2016 at 20:54:20 UTC, Yuxuan Shui wrote:
> Say:
>
> module one;
> void func(int a){}
>
> /////////////////////
>
> module two;
> import one;
> void func(float a){}
>
> Is there a way to get both func() in module two?
Add in module two:
alias func = one.func;