missionary

J 2024-11-28T21:35:42.407349Z

Hi! I have a behaviour that I not understand:

(defn foo [] nil)
(m/?
  (m/sp
    (let [^Long a (foo)]
      a)))
;; => NullPointerException

(m/?
  (m/sp
    (let [a (foo)]
      a)))
;; => nil

leonoel 2024-11-29T09:01:34.739899Z

cloroutine bug, thank you for reporting https://github.com/leonoel/cloroutine/issues/31

👍 3