私の名前空間宣言は次のようになります。
(ns test.foo
(:use
[clj-http.client :only (get) :as client]
[net.cgrand.enlive-html :only (select) :as html]))
初めて使用する REPL で問題なく動作します。次に、コードを変更して REPL で次のことを試してみます。
(use :reload 'test.foo)
私は得る:
java.lang.IllegalStateException: get already refers to: #'clj-http.client/get in namespace: test.foo (foo.clj:1)
私は反時計回りのウィンドウを使用しており、leiningen(lein repl)も試しました。