I was browsing the clojure source code this morning, and near the top of clojure/core.clj I found this:
(def
^{:arglists '([& items])
:doc "Creates a new list containing the items."
:added "1.0"}
list (. clojure.lang.PersistentList creator))
The thing that looks odd to me is the symbol creator. It doesn't appear anywhere in the file above it. Why is that not a problem?