about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-thunked-functor.nix
blob: 568a5c54134cc7d1bf0dbbe2645b40c8201b6125 (plain) (blame)
1
2
3
4
5
6
7
8
let
  __functor = f;
  f = self: x: self.out * x;
in
{
  inherit __functor;
  out = 21;
} 2