diff options
Diffstat (limited to 'tests/lang/eval-okay-map.nix')
-rw-r--r-- | tests/lang/eval-okay-map.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-map.nix b/tests/lang/eval-okay-map.nix index 924446657aec..a76c1d811454 100644 --- a/tests/lang/eval-okay-map.nix +++ b/tests/lang/eval-okay-map.nix @@ -1 +1,3 @@ -map (x: x + "bar") [ "foo" "bla" "xyzzy" ] \ No newline at end of file +with import ./lib.nix; + +concat (map (x: x + "bar") [ "foo" "bla" "xyzzy" ]) \ No newline at end of file |