about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-mutually-recursive-let-binding.nix
blob: 1b3feda432efc449392a93876e7947e0bb554e0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
  a = {
    a = 3;
    b = b.b;
  };

  b = {
    a = a.a - 2;
    b = 2;
    c = a.c or 3;
  };
in

a // b