about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-05-02T11·20+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-05-02T11·20+0000
commitae55e79541ffbce7a051794d6d25e9e8c7b63b2d (patch)
tree2288881ce2a63dc4e56ea24681dbcbad16e823e5 /tests
parentdca43ef795c0589d47620241823393c739b99498 (diff)
* More tests.
Diffstat (limited to 'tests')
-rw-r--r--tests/lang/eval-fail-scope-5.nix2
-rw-r--r--tests/lang/eval-okay-scope-6.exp1
-rw-r--r--tests/lang/eval-okay-scope-6.nix7
3 files changed, 9 insertions, 1 deletions
diff --git a/tests/lang/eval-fail-scope-5.nix b/tests/lang/eval-fail-scope-5.nix
index dc8243bc85..f89a65a99b 100644
--- a/tests/lang/eval-fail-scope-5.nix
+++ b/tests/lang/eval-fail-scope-5.nix
@@ -5,6 +5,6 @@ let {
 
   f = {x ? y, y ? x}: x + y;
 
-  body = f {x = "c";} + f {y = "d";};
+  body = f {};
 
 }
diff --git a/tests/lang/eval-okay-scope-6.exp b/tests/lang/eval-okay-scope-6.exp
new file mode 100644
index 0000000000..e2c962c958
--- /dev/null
+++ b/tests/lang/eval-okay-scope-6.exp
@@ -0,0 +1 @@
+Str("ccdd")
diff --git a/tests/lang/eval-okay-scope-6.nix b/tests/lang/eval-okay-scope-6.nix
new file mode 100644
index 0000000000..0995d4e7e7
--- /dev/null
+++ b/tests/lang/eval-okay-scope-6.nix
@@ -0,0 +1,7 @@
+let {
+
+  f = {x ? y, y ? x}: x + y;
+
+  body = f {x = "c";} + f {y = "d";};
+
+}