Skip to content

Instantly share code, notes, and snippets.

@drewr
Created February 25, 2010 18:45
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 drewr/314886 to your computer and use it in GitHub Desktop.
Save drewr/314886 to your computer and use it in GitHub Desktop.
(ns foo.bar
(:use [clojure.core :exclude [bytes]]))
(type bytes) ; => clojure.core$bytes__4778
;; why no resolution error?
;; oh, the correct way:
(ns foo.bar
(:refer-clojure :exclude [bytes]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment