Fork me on GitHub
#joker
<
2019-09-17
>
borkdude09:09:23

Hi! I'm trying to implement a similar feature as joker in the realm of "type errors". I bumped into a problem where ^String can be nilable in Clojure. I see that joker warns about this:

(defn foo [^String x])
(foo nil)
while it probably should not. I'm erring on the side of "everything can be nil" just to prevent any false positives. Any thoughts on this?

borkdude09:09:47

I'll post an issue about this example just to register it somewhere