Open
Description
julia> module M1 module M2 end end
Main.M1
julia> using .M1.M2
julia> using Statistics
julia> names(Main, imported=true)
5-element Vector{Symbol}:
:Base
:Core
:M1
:Main
:Statistics
julia> module M3
using Statistics
end
Main.M3
julia> names(M3, imported=true)
1-element Vector{Symbol}:
:M3
This is due to
Lines 771 to 775 in b354ce7
Which I think was added 7 years ago in #25256
Metadata
Metadata
Assignees
Labels
No labels