X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ftype.pure.lisp;h=0ea08e0826d70c6f2e6374d3dec1589f611d19ae;hb=5cd0fc84df83d1b3321b7fc969843207721de429;hp=1bd07f4aaf55384601e1529825830bf82180a9ac;hpb=25c9bfeaaf0597e37271dde31eed7037dba391e0;p=sbcl.git diff --git a/tests/type.pure.lisp b/tests/type.pure.lisp index 1bd07f4..0ea08e0 100644 --- a/tests/type.pure.lisp +++ b/tests/type.pure.lisp @@ -215,7 +215,21 @@ (assert (subtypep 'complex '(complex real))) (assert (subtypep '(complex real) 'complex)) (assert (subtypep '(complex (eql 1)) '(complex (member 1 2)))) +(assert (subtypep '(complex ratio) '(complex rational))) +(assert (subtypep '(complex ratio) 'complex)) (assert (equal (multiple-value-list (subtypep '(complex (integer 1 2)) '(member #c(1 1) #c(1 2) #c(2 1) #c(2 2)))) '(nil t))) + +(assert (typep 0 '(real #.(ash -1 10000) #.(ash 1 10000)))) +(assert (subtypep '(real #.(ash -1 1000) #.(ash 1 1000)) + '(real #.(ash -1 10000) #.(ash 1 10000)))) +(assert (subtypep '(real (#.(ash -1 1000)) (#.(ash 1 1000))) + '(real #.(ash -1 1000) #.(ash 1 1000)))) + +;;; Bug, found by Paul F. Dietz +(let* ((x (eval #c(-1 1/2))) + (type (type-of x))) + (assert (subtypep type '(complex rational))) + (assert (typep x type)))