about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-manual-rec.nix
blob: 8e1256d764e3ff13ba745720b5fabe5aaaa62e07 (plain) (blame)
1
2
3
4
5
6
7
8
9
# Manual desugaring of something similar to `rec`, to test lower level
# recursion primitives.

let
  set = with set; {
    a = 21;
    b = a * 2;
  };
in set.b