about summary refs log tree commit diff
path: root/tests/lang/eval-fail-bad-value.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2008-08-11T13·36+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2008-08-11T13·36+0000
commit5664b6d7ba28453ccdd6d1c07a707f98608500ff (patch)
tree60daaa7ce7b53cbfe2ec2a86aeb4eca792ccf7ca /tests/lang/eval-fail-bad-value.nix
parentb455c4c45cba49397952e662cace85aedb6848fe (diff)
* Removed the "valid values" feature. Nobody uses it anyway.
Diffstat (limited to 'tests/lang/eval-fail-bad-value.nix')
-rw-r--r--tests/lang/eval-fail-bad-value.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/lang/eval-fail-bad-value.nix b/tests/lang/eval-fail-bad-value.nix
deleted file mode 100644
index 97969145eeb1..000000000000
--- a/tests/lang/eval-fail-bad-value.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-let {
-
-  f = {x, y : ["baz" "bat"]}: x + y;
-
-  body = f {x = "foo"; y = "bar";};
-
-}