diff options
Diffstat (limited to 'tests/functional/lang/eval-okay-filter.nix')
-rw-r--r-- | tests/functional/lang/eval-okay-filter.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/functional/lang/eval-okay-filter.nix b/tests/functional/lang/eval-okay-filter.nix new file mode 100644 index 000000000..85109b0d0 --- /dev/null +++ b/tests/functional/lang/eval-okay-filter.nix @@ -0,0 +1,5 @@ +with import ./lib.nix; + +builtins.filter + (x: x / 2 * 2 == x) + (builtins.concatLists [ (range 0 10) (range 100 110) ]) |