1.0.13.8: Fix bug in ENSURE-DIRECTORIES-EXIST
[sbcl.git] / tests / compiler.pure.lisp
index 5d12ac0..ce69513 100644 (file)
                      t)
                    t
                    (error "~a" y)))))
+
+;;; Compiling W-P-O when the pinned objects are known to be fixnums
+;;; or characters.
+(compile nil '(lambda (x y)
+               (declare (fixnum y) (character x))
+               (sb-sys:with-pinned-objects (x y)
+                 (some-random-function))))