about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-map-function-strictness.nix
blob: 932d3d0eaebc71b9345ebafc3efd2f59e36a10eb (plain) (blame)
1
2
3
4
5
6
7
8
let
  self =
    let
      l = builtins.map (builtins.head self) [ 2 "." 18 https://github.com/NixOS/nix/issues/9779 "-.-" ];
    in
    [ (x: x) ] ++ l;
in
self