I would think this would fail, but it doesn't:
--------------------------
module c;
void f() {
}
--------------------------
module b;
import c;
--------------------------
module a;
import b;
void main() {
c.f();
}
--------------------------
just using 'f()' instead of 'c.f()' works as it should giving the error: 'undefined identifier f'.
Comment #1 by thomas-dloop — 2007-01-24T02:09:19Z
*** This bug has been marked as a duplicate of 313 ***