about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-genList-function-strictness.nix
blob: e161e3b4af4f14f1af69964c9edd72bfbf821848 (plain) (blame)
1
2
3
4
5
6
7
8
let
  self =
    let
      l = builtins.genList (builtins.head self) 3;
    in
    [ (x: x) ] ++ l;
in
self