由:michaelblume
(链接: ~bronsa) 我在这个补丁中看到了行为上的变化
`
(defprotocol BoolProtocol
(proto-fn [this]))
(extend-protocol BoolProtocol
Object
(proto-fn [x] "Object impl")
nil
(proto-fn [x] "Nil impl"))
(proto-fn false)
`
使用 Clojure master 返回 "Object impl",使用此补丁返回 "Nil impl")