Comment 3 for bug 1889393

Revision history for this message
Stas Boukarev (stassats) wrote :

Actually different. Further reduced to
(defun foo (x z)
  (let ((l (if x
               (tagbody
                m
                  (if z
                      (go m)))
               (list (list 1)))))
    (declare (dynamic-extent l))
    (print l)
    1))