missionary 2024-11-28

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

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

👍 3