about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-deferred-with.nix
blob: ccafdf74cee9d49193692a08d1ebb94a3ea721e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Tests using `with` on a set that does not yet exist on the stack.

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