Compiler should emit warning about namespace and/or non-existent var
Description
Made project as described in quickstart.
hello-world/core.cljs
hello_world/foo.cljs
Note that `foo.cljs` has a namespace name that is not consistent with the file structure.
I expect 1) a warning about `(:require [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.
Made project as described in quickstart.
hello-world/core.cljs
hello_world/foo.cljs
Note that `foo.cljs` has a namespace name that is not consistent with the file structure.
I expect
1) a warning about `(:require [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.