There is an error in the link in the issue: you leave "):" in the end of 
url. 

On Monday, November 16, 2015 at 4:32:10 PM UTC+2, Alex Miller wrote:
>
> Clojure 1.8.0-RC2 is now available. *This build is a "release candidate"!* We 
> would appreciate any and all testing you can do on your own libraries or 
> internal projects to find problems. 
>
> Try it via
>
>    - Download: 
>    https://repo1.maven.org/maven2/org/clojure/clojure/1.8.0-RC2
>    - Leiningen: [org.clojure/clojure "1.8.0-RC2"]
>
> Below are the changes since 1.8.0-RC1. See the full 1.8 change log here: 
> https://github.com/clojure/clojure/blob/master/changes.md.
>
>    - CLJ-1846 <http://dev.clojure.org/jira/browse/CLJ-1846> Fix 
>    VerifyError when primitive type hints are incorrect. These cases now throw 
>    compiler errors.
>       - Example: (defn foo ^long [] 1)  (Integer/bitCount ^int (foo))
>       - In this example, foo returns a long but is type hinted 
>       (incorrectly) as an int. This case will now throw a compilation error. 
> The 
>       correct way to do this is with a cast:  (Integer/bitCount (int 
>       (foo)))
>    - CLJ-1825 <http://dev.clojure.org/jira/browse/CLJ-1825> Fix 
>    compilation errors on direct linking of anonymous recursive functions
>
>

-- 
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 group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to