It's precisely the behaviour you would get by calling String.valueOf(null) in 
java.  Nulls match to the most specific parameter type in a given hierarchy, 
and in this case, that would be char[] instead of Object.  If the param 
types were not in the same hierarchy, say char[] and String, then you'd get 
an ambiguity exception.

-- 
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

Reply via email to