cursive icon indicating copy to clipboard operation
cursive copied to clipboard

refer-clojure exclude + defn, failure in symbol resolution

Open jasonjckn opened this issue 1 year ago • 0 comments

I have a namespace declaration with

(:refer-clojure :exclude [assert conj])

and inside that namespace I defn conj

(defn conj
  "Like [[clojure.core/conj]], but for LensSchemas."
  ([?spec x]
   (...............util/conj ?spec x))

  ([?spec x & xs]
   (apply ....util/conj ?spec x xs)))

I have another namespace which requires and aliases this namespace and use the conj function, but Cursive says image

I'm relying on this option, since i'm on polylith... if that matters at all image

jasonjckn avatar Oct 13 '23 08:10 jasonjckn