about summary refs log tree commit diff
path: root/third_party/nix/tests/lang/eval-okay-mapattrs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/tests/lang/eval-okay-mapattrs.nix')
-rw-r--r--third_party/nix/tests/lang/eval-okay-mapattrs.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/nix/tests/lang/eval-okay-mapattrs.nix b/third_party/nix/tests/lang/eval-okay-mapattrs.nix
new file mode 100644
index 0000000000..f075b6275e
--- /dev/null
+++ b/third_party/nix/tests/lang/eval-okay-mapattrs.nix
@@ -0,0 +1,3 @@
+with import ./lib.nix;
+
+builtins.mapAttrs (name: value: name + "-" + value) { x = "foo"; y = "bar"; }