1
0
mirror of synced 2026-05-05 15:44:25 +00:00
Files
Interlisp.medley/internal/test/LANGUAGE/AUTO/AR6781.TEST

6 lines
277 B
Plaintext

;;; Regression test for AR 6781: etypecase produces incorrect error message
(do-test "AR 6781"
(not (search "the value of" (xcl:condition-case (progn (etypecase "foo" (symbol 1) (integer 2)) "the value of") (xcl:type-mismatch (c) (princ-to-string c))) :test 'char-equal))
)