diff options
Diffstat (limited to 'tests/lang/eval-okay-mapattrs.nix')
-rw-r--r-- | tests/lang/eval-okay-mapattrs.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-mapattrs.nix b/tests/lang/eval-okay-mapattrs.nix new file mode 100644 index 000000000000..f075b6275e5a --- /dev/null +++ b/tests/lang/eval-okay-mapattrs.nix @@ -0,0 +1,3 @@ +with import ./lib.nix; + +builtins.mapAttrs (name: value: name + "-" + value) { x = "foo"; y = "bar"; } |