Demo code:
import Toybox.Test;
import Toybox.Lang;
module ImportWeirdness {
module Strange {
import ImportWeirdness.ImportedOutOfScope;
}
module NotImported {
const K = 0;
}
module ImportedInScope {
const K = 1;
}
module ImportedOutOfScope...