1 ;;;; tests, with side effects, of DESTRUCTURING-BIND-ish functionality
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
14 ;;; In sbcl-1.0.7.8, the printer for the ERROR condition signalled from
15 ;;; (DESTRUCTURING-BIND (...) 1 ...)
16 ;;; contained the implicit assumption that the bad datum was a list,
17 ;;; so that attempting to print the condition caused a new error.
18 (defun frob-1-0-7-8 (x)
19 (destructuring-bind (y . z
) x
22 (multiple-value-bind (whatever error
)
23 (ignore-errors (frob-1-0-7-8 1))
24 (declare (ignore whatever
))
25 (princ error
)) ; shouldn't cause an error
27 (with-test (:name
:destruring-bind-atom-good-error
)
28 (let ((c (make-condition 'sb-kernel
::arg-count-error
35 (write-to-string c
:escape nil
))
36 (let ((c (make-condition 'sb-kernel
::arg-count-error
38 :lambda-list
'(a b . c
)
43 (write-to-string c
:escape nil
)))