diff options
Diffstat (limited to 'test-suite/tests/elisp-compiler.test')
-rw-r--r-- | test-suite/tests/elisp-compiler.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test-suite/tests/elisp-compiler.test b/test-suite/tests/elisp-compiler.test index 1eed4502e..7d77c3b8d 100644 --- a/test-suite/tests/elisp-compiler.test +++ b/test-suite/tests/elisp-compiler.test @@ -241,7 +241,10 @@ #:opts '(#:disable-void-check all)) (pass-if "disabled void check (symbol list)" (progn (makunbound 'a) a t) - #:opts '(#:disable-void-check (x y a b)))) + #:opts '(#:disable-void-check (x y a b))) + (pass-if "without-void-checks" + (progn (makunbound 'a) + (= (without-void-checks (a) a 5) 5)))) (with-test-prefix/compile "Let and Let*" |