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> using Infiltrator
julia> f() = @infiltrate
f (generic function with 1 method)
julia> f()
Infiltrating f()
at REPL[6]:1
infil> using LinearAlgebra
infil> diag(rand(3,3))
3-element Vector{Float64}:
0.36562883870167695
0.921351746661747
0.4063474189634826
julia> diag(rand(3,3))
ERROR: UndefVarError: diag not defined
Does this minimal example work for you? What version of Infiltrator are you on?
Looking at other issues it seems that one should be able to call functions from other modules... Am I missing something? This is with Julia 1.7.2.
The text was updated successfully, but these errors were encountered: