:as-alias seems not to resolve symbols.
shadow.user=> (shadow/repl :ui)
cljs.user=> (require '[clojure.core :as-alias c])
nil
cljs.user=> ::c/x
:clojure.core/x
cljs.user=> `c/x
c/x
cljs.user=> clojurescript-version
"1.12.42"
This is fixed in vanilla clojurescript https://clojure.atlassian.net/browse/CLJS-3399 Is there some place clojurescript 1.11 gets pulled in that I have to check and update?should be fixed in 3.1.8
did you try in regular code? could be a REPL bug
I built a map {`k v} and printing (keys map) from Code does not resolve the `k.
will check tommorrow