about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-with-closure.nix
blob: 7e2f7c073bfc706ecdb5889e1d252207744890bd (plain) (blame)
1
2
3
4
5
# Upvalues from `with` require special runtime handling. Do they work?
let
  f = with { a = 15; }; n: n * a;
in
f 10