Skip to content
Snippets Groups Projects
Commit 035c6be3 authored by pfdietz's avatar pfdietz
Browse files

New sbcl compiler failure (type prop test on structure accessor).

parent 7234c333
No related branches found
No related tags found
No related merge requests found
......@@ -11201,3 +11201,19 @@ Broken at C::WT-MAKE-CLOSURE.
(not (not (logbitp 0 (floor 2147483651 (min -23 0))))))))
t)
;;; sbcl 0.9.9.35
;;; The value #S(MISC-629 :A 1 :B 3) is not of type SB-KERNEL:INSTANCE.
(defstruct misc-629 a b)
(deftest misc.629
(let* ((s (make-misc-629 :a 1 :b 3))
(form `(lambda (x)
(declare (optimize (speed 1) (safety 3) (debug 0) (space 2))
(type (member 0 2 ,s) x))
(misc-629-a x))))
(funcall (compile nil form) s))
1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment