about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-mapAttrs-function-strictness.nix
blob: 2946d6de1760d9abb3df62af5799b7de500c7042 (plain) (blame)
1
2
3
4
5
6
7
8
let
  self =
    let
      s = builtins.mapAttrs self.f { a = 1; b = 2; };
    in
    { f = _: x: x; } // s;
in
self