I was trying out the new AOT compilation, but hit a roadblock with the
following error message:

java.lang.NoClassDefFoundError: compile_fail$criteria__9$f__11

If I do a dirty build, i.e. just run build 2x, it will find the class.
I stripped everything down to the bare essentials to recreates it:
---
(ns compile-fail)

(defmacro criteria [& names]
  (let [f (fn [n] `(defn ~n [s#]
                     (str ~(str n) ":" s#)))]
    `(do ~@(map f names))))

(criteria foo)

---

Any help would be appreciated,
Wilkes
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to