about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-okay-scope-6.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/tests/lang/eval-okay-scope-6.nix')
-rw-r--r--third_party/nix/src/tests/lang/eval-okay-scope-6.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/third_party/nix/src/tests/lang/eval-okay-scope-6.nix b/third_party/nix/src/tests/lang/eval-okay-scope-6.nix
deleted file mode 100644
index 0995d4e7e7..0000000000
--- a/third_party/nix/src/tests/lang/eval-okay-scope-6.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-let {
-
-  f = {x ? y, y ? x}: x + y;
-
-  body = f {x = "c";} + f {y = "d";};
-
-}