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?
Yuxuan Shui via Digitalmars-d-learn Wed, 23 Mar 2016 13:57:07 -0700
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?