Welcome! Please see the About page for a little more info on how this works.

0 votes
in ClojureScript by

Made project as described in quickstart.

hello-world/core.cljs

`
(ns hello-world.core
(:require [hello-world.foo]))

(enable-console-print!)

(println "Hello world!")
(hello-world.foo/foo)
;; no warning
`

hello_world/foo.cljs

(ns hello-world.foo2) (defn foo [] (println "o no"))

Note that foo.cljs has a namespace name that is not consistent with the file structure.

I expect
1) a warning about (:require (link: hello-world.foo)) not being able to find the namespace, and/or
2) a warning about (hello-world.foo/foo) being a non-existent var.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJS-2459 (reported by borkdude)
...