Skip to content

Instantly share code, notes, and snippets.

@halgari
Created October 29, 2013 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save halgari/7223421 to your computer and use it in GitHub Desktop.
Save halgari/7223421 to your computer and use it in GitHub Desktop.
Reify error
(ns main-ns)
(defprotocol BadReify
(do-stuff [this]))
(defn wrap-stuff [x]
(reify
BadReify
(do-stuff [this]
x)))
;; WARNING: Use of undeclared Var main-ns/main-ns at line 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment