tests: add a regression test for the reverse of 58f17f6c6
This commit is contained in:
parent
a2a12e2531
commit
f7f0edebd6
1 changed files with 15 additions and 0 deletions
|
|
@ -1888,3 +1888,18 @@
|
|||
(is (equal
|
||||
(funcall 'foo.0079)
|
||||
'(123 123 345 0 345 0))))
|
||||
|
||||
;;; Date 2020-05-08
|
||||
;;;
|
||||
;;; Regression from a fix for #577.
|
||||
(test cmp.0080.inline-closure
|
||||
(is (funcall (compile
|
||||
nil
|
||||
'(lambda ()
|
||||
(labels ((bam (pos)
|
||||
(declare (inline bam))
|
||||
(if (= pos 42)
|
||||
:banzai
|
||||
(let ((my-new-val 42))
|
||||
(bam my-new-val)))))
|
||||
(eq :banzai (bam 30))))))))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue