以下代码会崩溃:
`
(try
(loop [] (try "string and number literals blow this up" (catch Throwable e)))
"remove this second try call and it works")
=> 编译时出现语法错误(ClassFormatError)在fn*位置(REPL:1:1)。
=> 类文件user$eval5846中存在非法的异常表范围
`
而这是没有问题的
(try (loop [] (try () (catch Throwable e))) "remove this second try call and it works")