We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a bit of a strange issue that I'm facing, but the following works on the release-1.10 branch of julia but not on master:
release-1.10
master
julia> using LinearAlgebra julia> Revise.track(LinearAlgebra)
Now add temp(x) = x to LinearAlgebra, and run
temp(x) = x
LinearAlgebra
julia> LinearAlgebra.temp(2) 2
The change is being picked up.
However, on master, I find
julia> LinearAlgebra.temp(2) ERROR: UndefVarError: `temp` not defined in `LinearAlgebra` Suggestion: check for spelling errors or missing imports. Stacktrace: [1] getproperty(x::Module, f::Symbol) @ Base ./Base.jl:42 [2] top-level scope @ REPL[3]:1 julia> VERSION v"1.12.0-DEV.147"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a bit of a strange issue that I'm facing, but the following works on the
release-1.10
branch of julia but not onmaster
:Now add
temp(x) = x
toLinearAlgebra
, and runThe change is being picked up.
However, on
master
, I findThe text was updated successfully, but these errors were encountered: