Re: primitive type hints do not work when destructuring

2011-11-02 Thread bsmith.occs
On Nov 2, 11:40 am, Sergey Didenko wrote: > Seems like a bug: > > The following compiles: > > (let [[^Double x ^Double y] [0.1 0.2]] (+ x y)) > > This does not: > > (let [[^double x ^double y] [0.1 0.2]] (+ x y)) > > "Unable to resolve classname: double" This is CLJ-852. Applying the patch posted

Re: primitive type hints do not work when destructuring

2011-11-02 Thread Sergey Didenko
tested under Clojure 1.3 -- 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 Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this g

primitive type hints do not work when destructuring

2011-11-02 Thread Sergey Didenko
Seems like a bug: The following compiles: (let [[^Double x ^Double y] [0.1 0.2]] (+ x y)) This does not: (let [[^double x ^double y] [0.1 0.2]] (+ x y)) "Unable to resolve classname: double" -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post