about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-recursive-attrs-all-features.nix
blob: a234705b5e53f0ca900e522c2732c8b8eda871f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
let a = 1;
in
(rec {
  inherit a;

  b = {
    c = a + 20;
  };

  inherit (b) c;

  d = c * 2;
}).d