On Fri, Feb 25, 2011 at 8:26 PM, Seth <[email protected]> wrote: > Notice that this occurs even if i dont redefine record A - if i do > (require :reload-all 'my-namespace), any old record object will now > fail with type hinted functions.
Reloading replaces A with a new instance of the A class. These are not the same class so you can't cast an old-A instance to a new-A instance. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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
