Debugger.jl
Debugger.jl copied to clipboard
Debugger will crash when the `show` method throw an exception.
Debugger will crash when the show
method throw an exception.
For example, the following code will make a crash on debugger.
struct Test end
Base.show(io::IO, self::Test) = print(io, wrong_code()) # note: `wrong_code` is not defined
a = Test()