You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defprotocolIdentity (i [this]))
(extend-protocol Identity object (i [s] s)) ;; <- this works
(extend-protocol Identity nil (i [_])) ;; <- this results in an error
version
v0.8.125
problem
Extending a protocol to
nil
results in an error.repro
The error looks like this:
Squint playground reproduction
expected behavior
Parity with clojure and clojurescript when extending a protocol to nil.
The text was updated successfully, but these errors were encountered: