-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed as not planned
Labels
duplicateIndicates similar issues or pull requestsIndicates similar issues or pull requests
Description
julia> module A
f(x) = 1
export f
end
Main.A
julia> module B
using Main.A: f as g
export g
end
Main.B
julia> using .B
julia> g
WARNING: could not import A.g into Main
f (generic function with 1 method)
julia> g(1)
WARNING: could not import A.g into Main
1
This occurs on 1.8.2 but not master so perhaps just a backport is needed. I haven't yet checked whether this is resolved on release-1.8
(soon to be 1.8.3) nor the backports for 1.8.4.
Metadata
Metadata
Assignees
Labels
duplicateIndicates similar issues or pull requestsIndicates similar issues or pull requests