about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-nested-with.nix
blob: fa832b2099aa5d923aea3e3235d7f6c981d2cf86 (plain) (blame)
1
2
3
4
5
let
  set1 = { a = 1; };
  set2 = { a = 2; };
in
with set1; with set2; a