aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/lisp/emacs-lisp/bytecomp-tests.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/bytecomp-tests.el b/test/lisp/emacs-lisp/bytecomp-tests.el
index d0b97907389..e8feec31d26 100644
--- a/test/lisp/emacs-lisp/bytecomp-tests.el
+++ b/test/lisp/emacs-lisp/bytecomp-tests.el
@@ -280,7 +280,13 @@
280 (while l 280 (while l
281 a (setq l nil)) 281 a (setq l nil))
282 'correct) 282 'correct)
283 (t 'incorrect)))) 283 (t 'incorrect)))
284 (let ((a))
285 (cond ((eq a 'foo) 'incorrect)
286 (t)))
287 (let ((a))
288 (cond ((eq a 'foo) 'incorrect)
289 ('correct))))
284 "List of expression for test. 290 "List of expression for test.
285Each element will be executed by interpreter and with 291Each element will be executed by interpreter and with
286bytecompiled code, and their results compared.") 292bytecompiled code, and their results compared.")