Bad type hints on a defn cause the compiler to throw a NPE

Description

After CLJ-1232 was committed to master, it is possible for the Clojure compiler to throw a NPE if a defn is type hinted with a invalid type. This surfaces in CLJS where the defn macro is re-used by the ClojureScript compiler, but I think it raises the question: "Should a bad type hint result in a compiler exception?"

The offending line can be found here on GitHub: https://github.com/clojure/clojure/blob/master/src/clj/clojure/core.clj#L247

Environment

None

Activity

Show:

Alex Miller July 10, 2017 at 8:09 PM

Description could use some examples

Nicola Mometto December 18, 2015 at 2:29 PM

I don't agree that we shoud ignore bad type hints.
If the compiler knows that something is wrong, it should tell the user immediately rather than silently ignoring and potentially failing at runtime later

Timothy Baldridge December 18, 2015 at 2:22 PM

Agreed. I think another possible solution would be to update CLJS to not use the CLJ defn, but I still think that a bad type hint should just be ignored.

Alex Miller December 18, 2015 at 2:12 PM

This is basically the same as CLJ-1868, but I think what you are asking here is whether bad type hints should be ignored or throw any exception, right?

(Whereas CLJ-1868 is about which exception/message is thrown)

Details

Assignee

Reporter

Approval

Triaged

Priority

Affects versions

Created December 4, 2015 at 7:16 PM
Updated July 10, 2017 at 8:09 PM

Flag notifications