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