dcolthorp / matchure

Powerful, idiomatic pattern matching for clojure
159 stars 8 forks source link

"IOException: File name too long" upon compilation #10

Open christianpohlmann opened 12 years ago

christianpohlmann commented 12 years ago

An example from my project which doesn't compile can be found here: https://gist.github.com/1244987

The compiler reports:

Compiling match1.core
Exception in thread "main" java.io.IOException: File name too long (core.clj:7)
        at clojure.lang.Compiler.analyzeSeq(Compiler.java:5376)
        at clojure.lang.Compiler.analyze(Compiler.java:5190)
        at clojure.lang.Compiler.analyzeSeq(Compiler.java:5357)
        at clojure.lang.Compiler.analyze(Compiler.java:5190)
        at clojure.lang.Compiler.access$100(Compiler.java:35)

If four or more arbitrary clauses are removed, it magically compiles though.