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