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
julia> module M module M endend
WARNING: replacing module M.
Main.M
julia> M.M
Main.M.M
julia> versioninfo()
Julia Version 1.11.0-DEV.548
Commit b44a95bca72 (2023-09-25 13:40 UTC)
Build Info:
Official https://julialang.org/ release
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: 8 × AMD Ryzen 3 5300U with Radeon Graphics
WORD_SIZE: 64
LLVM: libLLVM-15.0.7 (ORCJIT, znver2)
Threads: 1 on 8 virtual cores
module M module M end end results in a false warning message; it appears no module was actually replaced (seeing as the M.M access works fine), contrary to the message.
This may have received some discussion in #23619, but I'm not sure of the relevancy or up-to-dateness of that discussion. I think the discussion in that issue is outdated by the release of Julia 1, because it discusses breaking changes that are now not possible (until v2)?
The text was updated successfully, but these errors were encountered:
module M module M end end
results in a false warning message; it appears no module was actually replaced (seeing as theM.M
access works fine), contrary to the message.This may have received some discussion in #23619, but I'm not sure of the relevancy or up-to-dateness of that discussion. I think the discussion in that issue is outdated by the release of Julia 1, because it discusses breaking changes that are now not possible (until v2)?
The text was updated successfully, but these errors were encountered: