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

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