about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-deferred-with.nix
# Tests using `with` on a set that does not yet exist on the stack.

let
  result = with set; value;
  set = {
    value = 42;
  };
in result