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.