using GenericLinearAlgebra
svd(big.([1,2;3,4]))
returns
UndefVarError: svd not defined
Stacktrace:
[1] top-level scope
@ In[2]:1
[2] eval
@ .\boot.jl:373 [inlined]
[3] include_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String)
@ Base .\loading.jl:1196
If I add using LinearAlgebra before using GenericLinearAlgebra, it works.
This is, to me, a bit counter-intuitive.