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
This used to be an important static check whether the thing we import actually exists. It used to fail the precompile, but now it only warns, so if you don't happen to inspect it you will not know about this.
julia>VERSIONv"1.10.7"
julia>using Base: aaa
ERROR: UndefVarError:`aaa` not defined
julia>import Base: asdsa
WARNING: could not import Base.asdsa into Main
julia>VERSIONv"1.11.1"
julia>using Base: aaa
WARNING: could not import Base.aaa into Main
julia>import Base: asdsa
WARNING: could not import Base.asdsa into Main