diff options
Diffstat (limited to 'third_party/nix/tests/lang/eval-okay-patterns.nix')
-rw-r--r-- | third_party/nix/tests/lang/eval-okay-patterns.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/third_party/nix/tests/lang/eval-okay-patterns.nix b/third_party/nix/tests/lang/eval-okay-patterns.nix deleted file mode 100644 index 96fd25a01517..000000000000 --- a/third_party/nix/tests/lang/eval-okay-patterns.nix +++ /dev/null @@ -1,16 +0,0 @@ -let - - f = args@{x, y, z}: x + args.y + z; - - g = {x, y, z}@args: f args; - - h = {x ? "d", y ? x, z ? args.x}@args: x + y + z; - - j = {x, y, z, ...}: x + y + z; - -in - f {x = "a"; y = "b"; z = "c";} + - g {x = "x"; y = "y"; z = "z";} + - h {x = "D";} + - h {x = "D"; y = "E"; z = "F";} + - j {x = "i"; y = "j"; z = "k"; bla = "bla"; foo = "bar";} |