does "private import" means "static import" to other modules	importing it?
    Cheng Wei 
    rivercheng at gmail.com
       
    Thu Oct 13 03:09:10 PDT 2011
    
    
  
suppose we have in module A, we have
import B;
Then in module C;
import A;
B.fun1();
B.fun2();
can be compiled successfully even without "static import B".
Is this correct? Thanks.
    
    
More information about the Digitalmars-d-learn
mailing list