about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-let-inherit-from-later-bound.nix
blob: 21196f48bcbeebd217659b731867dc0327bf53dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  inherit (c) d;
  inherit (a) b c;

  a = {
    b = 20;
    c = {
      d = 3;
    };
  };
in

b + d