X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ftype.pure.lisp;h=b97a0e995737ede259d4ab0abdb9de02241cab47;hb=4d8378af498b544256340e09919758e1f88029ac;hp=fd8409eeeaf384aad710216b3de3db3ca6b096c2;hpb=0f2ae6ebc3520494b665a9dbf32c36c671334d36;p=sbcl.git diff --git a/tests/type.pure.lisp b/tests/type.pure.lisp index fd8409e..b97a0e9 100644 --- a/tests/type.pure.lisp +++ b/tests/type.pure.lisp @@ -169,7 +169,6 @@ (subtypep '(function) '(function (t &rest t)))) '(nil t))) -#+nil (assert (and (subtypep 'function '(function)) (subtypep '(function) 'function))) @@ -199,4 +198,7 @@ (cons bignum single-float)) '(cons single-float single-float)))) (assert (subtypep '(cons integer single-float) - '(or (cons fixnum single-float) (cons bignum single-float)))) \ No newline at end of file + '(or (cons fixnum single-float) (cons bignum single-float)))) + +(assert (not (nth-value 1 (subtypep '(and null some-unknown-type) + 'another-unknown-type))))