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

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