Add another small test on this

This commit is contained in:
Paul R. Tagliamonte 2013-04-18 21:46:30 -04:00
parent d3a019b3dd
commit f268403d49

View File

@ -623,4 +623,5 @@
(defn test-quoted-hoistable []
"NATIVE: test quoted hoistable"
(setf f (quote (if true true true)))
(assert (= (car f) "if")))
(assert (= (car f) "if"))
(assert (= (cdr f) (quote (true true true)))))