let.t - Remove debug comments

This commit is contained in:
madmaurice 2021-04-06 23:50:56 +02:00
parent 732a3f87b4
commit 7d6a988e88

View file

@ -6,13 +6,11 @@
(let ((a 'top))
(let ((a 'shadow)
(b a))
(comment b)
(expect "let - non incremental context"
(equal b 'top))))
(let ((a 'top))
(let* ((a 'shadow)
(b a))
(comment b)
(expect "let* - Incremental context"
(equal b 'shadow))))