about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-nested-siblings.nix
blob: 31111d80810c982024d99f8dacb46673605e9924 (plain) (blame)
1
2
3
4
5
6
7
rec {
  outer =
    let inner = sibling;
    in inner;

  sibling = 42;
}