0.8.8.25:
[sbcl.git] / tests / array.pure.lisp
index 3eafab5..098cd0e 100644 (file)
                          (setf (aref a 2) #\c)
                          a)))))
   (assert (= (length (funcall f)) 4)))
+
+(let ((x (make-array nil :initial-element 'foo)))
+  (adjust-array x nil)
+  (assert (eql (aref x) 'foo)))