aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-okay-inherit-from.nix
blob: d1fad7d6989548d0eb671e04ce19d4e3a651d633 (plain)
1
2
3
4
5
6
let
  inherit (builtins.trace "used" { a = 1; b = 2; }) a b;
  x.c = 3;
  y.d = 4;
in
  [ a b rec { x.c = []; inherit (x) c; inherit (y) d; __overrides.y.d = []; } ]