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:
julia> using LinearAlgebra
julia> Revise.track(LinearAlgebra)
Now add temp(x) = x to LinearAlgebra, and run
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"
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 find