about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-thunked-with.nix
blob: 799408b2e64b72954a4cf6aac378162ed100e87b (plain) (blame)
1
2
3
4
5
6
7
8
# Creates a `with` across multiple thunk boundaries.

let
  set = {
    a = with { b = 42; }; b;
  };
in
set.a