aboutsummaryrefslogtreecommitdiff
path: root/tests/lisp/let-binding.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lisp/let-binding.lisp')
-rw-r--r--tests/lisp/let-binding.lisp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/lisp/let-binding.lisp b/tests/lisp/let-binding.lisp
deleted file mode 100644
index 33d021e..0000000
--- a/tests/lisp/let-binding.lisp
+++ /dev/null
@@ -1,7 +0,0 @@
-(assert-error (let ((i 0)) (i > 4)))
-
-(assert (= 3
-(let ((a 1)
- (b 2))
- (+ a b))))
-