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.

Reply via email to