This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-10-21
Channels
- # announcements (25)
- # beginners (31)
- # calva (7)
- # cider (21)
- # clj-kondo (3)
- # clojure (18)
- # clojure-bay-area (1)
- # clojure-europe (30)
- # clojure-norway (12)
- # clojurescript (5)
- # core-logic (1)
- # data-science (20)
- # datomic (7)
- # docker (3)
- # emacs (1)
- # gratitude (4)
- # honeysql (17)
- # hyperfiddle (15)
- # malli (9)
- # membrane (1)
- # nrepl (1)
- # off-topic (8)
- # other-languages (1)
- # overtone (48)
- # practicalli (1)
- # reitit (6)
- # shadow-cljs (30)
I want to create an empty array that holds keywords, using (make-array clojure.lang.Keyword 64)
. This works fine without any imports, but clj-kondo marks this with an error "Unresolved symbol: clojure".
I tried explicitly importing it, using (:import [clojure.lang Keyword])
, but the error persists. Is there a simple workaround or do I have to configure clj-kondo to ignore this case somehow?