X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ftype.pure.lisp;h=6eea7d3ee23947a2c47f9b9b31cf0b3ab79141e1;hb=e8571be6d533b80768bdae4e3e15316e4faa22fa;hp=36019b2355b6f9767f6e3957a52781b12d5ead34;hpb=61e6ba93d83266662a1e17431fab02a981ec6bc8;p=sbcl.git diff --git a/tests/type.pure.lisp b/tests/type.pure.lisp index 36019b2..6eea7d3 100644 --- a/tests/type.pure.lisp +++ b/tests/type.pure.lisp @@ -400,3 +400,27 @@ ACTUAL ~D DERIVED ~D~%" (with-test (:name :opt+rest+key-canonicalization) (let ((type '(function (&optional t &rest t &key (:x t) (:y t)) *))) (assert (equal type (sb-kernel:type-specifier (sb-kernel:specifier-type type)))))) + +(with-test (:name :bug-369) + (let ((types (mapcar #'sb-c::values-specifier-type + '((values (vector package) &optional) + (values (vector package) &rest t) + (values (vector hash-table) &rest t) + (values (vector hash-table) &optional) + (values t &optional) + (values t &rest t) + (values nil &optional) + (values nil &rest t) + (values sequence &optional) + (values sequence &rest t) + (values list &optional) + (values list &rest t))))) + (dolist (x types) + (dolist (y types) + (let ((i (sb-c::values-type-intersection x y))) + (assert (sb-c::type= i (sb-c::values-type-intersection i x))) + (assert (sb-c::type= i (sb-c::values-type-intersection i y)))))))) + +(with-test (:name :bug-485972) + (assert (equal (multiple-value-list (subtypep 'symbol 'keyword)) '(nil t))) + (assert (equal (multiple-value-list (subtypep 'keyword 'symbol)) '(t t))))