2024 Clojure发展状况调查中分享您的想法!

欢迎!有关如何使用本网站的更多信息,请参阅关于页面。

0
编译器
已关闭

以下代码会崩溃:

`
(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")

关闭,说明:为1.12.0-alpha2已应用补丁

1 答案

0
参考: https://clojure.atlassian.net/browse/CLJ-2521 (由管理员报告)
...