diff options
| -rw-r--r-- | test/lisp/emacs-lisp/bytecomp-tests.el | 8 |
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. |
| 285 | Each element will be executed by interpreter and with | 291 | Each element will be executed by interpreter and with |
| 286 | bytecompiled code, and their results compared.") | 292 | bytecompiled code, and their results compared.") |