about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix
blob: 4312ec9a522821150921ddaeb659611bb0164141 (plain) (blame)
1
2
3
4
5
let
  f = n: n + a;
  a = 2;
in
f 40