about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-with-closure.nix
# Upvalues from `with` require special runtime handling. Do they work?
let
  f = with { a = 15; }; n: n * a;
in
f 10