summaryrefslogtreecommitdiff
path: root/testsuite/t-closure3.scm
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/t-closure3.scm')
-rw-r--r--testsuite/t-closure3.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/t-closure3.scm b/testsuite/t-closure3.scm
new file mode 100644
index 000000000..2295a511a
--- /dev/null
+++ b/testsuite/t-closure3.scm
@@ -0,0 +1,7 @@
+(define (stuff)
+ (let* ((x 2)
+ (chbouib (lambda (z)
+ (+ 7 z x))))
+ (chbouib 77)))
+
+(stuff)