You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module M
module I
using..M # comment out -> worksmacrom()
:(a = Base.x) # remove `Base` -> worksendendusing.I # comment out -> worksfunctionf()
I.@m()
end
Base
end
now causes
ERROR: UndefVarError: `Base` not defined in `Main.M`
Hint: It looks like two or more modules export different bindings with this name, resulting in ambiguity. Try explicitly importing it from a particular module, or qualifying the name with the module it should come from.
Hint: a global variable of this name also exists in Base.