aboutsummaryrefslogtreecommitdiffstats
path: root/test/nest.resp
diff options
context:
space:
mode:
Diffstat (limited to 'test/nest.resp')
-rw-r--r--test/nest.resp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/nest.resp b/test/nest.resp
index 3085737..c15c453 100644
--- a/test/nest.resp
+++ b/test/nest.resp
@@ -1,6 +1,6 @@
(def (f x)
(def (g y)
(* y 2))
- (g x))
+ (g (+ x 1)))
(f 3)