1.0.42.29: tweak run-program.impure.lisp
[sbcl.git] / tests / list.pure.lisp
index d9b06b2..0340d85 100644 (file)
   (test '((42)) '((42)) '((42)) :key #'car)
   (test '((42)) '((42)) '((42)) :key #'car :test-not #'<))
 
+;;; FIND on lists should not call key outside the specified subsquence.
+(assert (not (find :a '(0 (:c) 1) :start 1 :end 2 :key #'car)))