On Mar 2, 1:50 pm, Frantisek Sodomka <[email protected]> wrote:
> 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" <[email protected]> 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)
>
Rev 1313 had a regression, fixed in 1319 - thanks for the report.
Rich
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---