A/a.d has  module A.a;
A/b.d has  module A.b;

A/package.d
        import A.a;
        import A.b;

A.b needs to access something from A.a

I assumed if I do

        import package.d

that A.b sees the content of A.a now and doens't need an explicit line with

a/b.d
        import A.a;

But this doesn't seem to be the case. Or am I missing something?

--
Robert M. Münch
http://www.saphirion.com
smarter | better | faster

Reply via email to