Remove unused binding from good Clojure test file

Prevents clj-kondo from warning about an unused binding.
This commit is contained in:
danielcompton 2020-06-25 20:06:44 +12:00
parent b26f7eda6d
commit b80ea7e335

View file

@ -7,8 +7,7 @@
(str/join "" "")
(defn foo-fn [x]
(let [y (fn [] (inc x))
z y]
(let [y (fn [] (inc x))]
(y)))
(letfn