Welcome! Please see the About page for a little more info on how this works.

0 votes
in core.contracts by

user> (use '(link: clojure.core.contracts :only [contract)])
nil
user> (contract

   silly
   "Silly reporting for duty sir!"
   (link: [a & b :as c])
   (link: ))

CompilerException java.lang.RuntimeException: Unable to resolve symbol: & in this context, compiling:(NO_SOURCE_PATH:1:1)

the & in "a & b" is unresolved.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CCONTRACTS-3 (reported by alex+import)
...