0.7.11.10:
[sbcl.git] / tests / eval.impure.lisp
index 9b8a0b6..f7803ff 100644 (file)
 (symbol-macrolet ((foo (symbol-macrolet-bar 1)))
   (defmacro symbol-macrolet-bar (x) `(+ ,x 1))
   (assert (= foo 2)))
+
+;;; Bug reported by Paul Dietz: CONSTANTP on a self-evaluating object
+;;; must return T
+
+(assert (constantp (find-class 'symbol)))
+(assert (constantp #p""))
 \f
 ;;; success
 (sb-ext:quit :unix-status 104)
-
-