Hmm, interesting error. After the merge of the lazy branch was
everything ok, so it has to be a recent change.

user=> (eval (list + 1 2 3))
java.lang.ExceptionInInitializerError (NO_SOURCE_FILE:0)
user=> (eval '(+ 1 2 3))
6

user=> (list + 1 2 3)
(#<core$_PLUS___243 clojure.core$_plus___...@153f141> 1 2 3)
user=> '(+ 1 2 3)
(+ 1 2 3)

Frantisek


On 2 Bře, 17:08, "Stephen C. Gilardi" <squee...@mac.com> wrote:
> A test like this in clojure.contrib.test-clojure.evaluation is  
> currently failing:
>
>         user=> (eval (list + 1 2 3))
>         java.lang.ExceptionInInitializerError (NO_SOURCE_FILE:0)
>
> --Steve
>
>  smime.p7s
> 3KZobrazitStáhnout
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to