-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Open
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorerror messagesBetter, more actionable error messagesBetter, more actionable error messages
Description
$julia -q --warn-overwrite=yes
julia> f() = 1
f (generic function with 1 method)
julia> g() = @eval f() = 1
g (generic function with 1 method)
julia> g()
WARNING: Method definition f() in module Main at REPL[1]:1 overwritten at REPL[2]:1.
f (generic function with 1 method)
julia> redirect_stderr(g, devnull)
WARNING: Method definition f() in module Main at REPL[2]:1 overwritten on the same line (check for duplicate calls to `include`).
f (generic function with 1 method)
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorerror messagesBetter, more actionable error messagesBetter, more actionable error messages