Nightlight
Nightlight copied to clipboard
InstaREPL doesn't respect :refer-clojure :exclude libraries
The InstaREPL does not correctly exclude core libraries when they are excluded in the ns
tag with :refer-clojure :exclude
Steps to reproduce:
- Execute
lien new app exclude-test
- Go into src/exclude_test/core.clj and turn InstaREPL on
- Change the contents of the file to the following
(ns exclude-test.core
(:refer-clojure :exclude [println])
(:gen-class))
println
(defn -main
"I don't do a whole lot ... yet."
[& args]
(println "Hello, World!"))
- See that the
println
line references clojure.core instead of nothing