Another "can't tell the size" error, this time with a bad setf form

Bug #1758951 reported by Paul F. Dietz
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
SBCL
Fix Released
Undecided
Unassigned

Bug Description

(lambda (l)
  (declare (fixnum l))
  (let ((words nil) (mark 0) (pos 0))
    (labels ((finish ()
               (setf pos l)
               (save))
             (save ()
               (when (< mark pos) (push (list mark pos) words)))
             (mark () (setf mark pos))
             (in-word (char) (save) #'in-space)
             (in-space () (mark) #'in-word)
             )
      (dotimes (i l (finish))
          (setf state) ;; bad assignment
          ))))

===>

can't tell the size of #<SB-C:TN '0!1 :CONSTANT>

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

Fixed once and for all in 18f2fb18c5da9ae5699d18f62a338abc93ddcbaa

Changed in sbcl:
status: New → Fix Committed
Stas Boukarev (stassats)
Changed in sbcl:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.