(ns foo.bar)
(defn xyzzy [x] (+ x 3))
(ns foo.core
(:require foo (bar :as b)))
(defn quux [x] (b/xyzzy x))
=== Starting new REPL at C:\Z All other files\clooj\projects\foo ===
Clojure 1.5.0
user=> clooj.repl.remote=>
foo.core=> Evaluating file...
CompilerException java.lang.RuntimeException: Unable to resolve symbol: b/xyzzy in this context, compiling:(core.clj:4:16)
Looks like it's not automatically loading foo.bar and evaluating it first. I think this worked in 0.2.8, which would make it a regression.