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