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 --warn-overwrite=yes -q
julia> while true
function f()
@warn "active function"
end
f()
break
function f()
@warn "inactive function"
end
end
WARNING: Method definition f() in module Main at REPL[1]:2 overwritten at REPL[1]:9.
┌ Warning: inactive function
The method is overwritten before you call f(). See also #15602
On Julia 1.11.0, 1.10.4, 1.9.0, Win10; Julia 1.8.3 on Ubuntu
output of this:
Is this a bug or a feature?
The text was updated successfully, but these errors were encountered: