0.9.16.3: initfile refactoring
[sbcl.git] / tests / print.impure.lisp
index 6a18d72..6d8072f 100644 (file)
 
 (assert (string= (eval '(format nil "~:C" #\a)) "a"))
 (assert (string= (format nil (formatter "~:C") #\a) "a"))
+
+;;; This used to trigger an AVER instead.
+(assert (raises-error? (format t "~>") sb-format:format-error))
+
 ;;; success