Commit 46f2ef52 authored by pfdietz's avatar pfdietz
Browse files

Added three tests that abl fails.

parent f16c9855
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -299,3 +299,16 @@
		 (not (cons integer cons)))))
    (subtypep-and-contrapositive-are-consistent 'cons t2))
  t)

(deftest subtypep.cons.35
  (notnot-mv (subtypep '(cons nil t) 'float))
  t t)

(deftest subtypep.cons.36
  (notnot-mv (subtypep '(cons t nil) 'symbol))
  t t)

(deftest subtypep.cons.37
  (notnot-mv (subtypep '(cons nil nil) 'real))
  t t)