1
0
mirror of synced 2026-05-03 06:39:40 +00:00
Files
Interlisp.medley/internal/test/LANGUAGE/AUTO/AR6273.TEST

12 lines
190 B
Plaintext

;;; Test case for AR 6273
(do-test "SETF in MACROLET"
(let ((x '(1 2 3)))
(macrolet ((foo () '(second x)))
(and (setf (foo) t)
(equal x '(1 t 3))
)
)
)
)