aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-okay-inherit-attr-pos.nix
blob: 017ab1d364d448b8f5863cb19f3079be258433ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
let
  d = 0;
  x = 1;
  y = { inherit d x; };
  z = { inherit (y) d x; };
in
  [
    (builtins.unsafeGetAttrPos "d" y)
    (builtins.unsafeGetAttrPos "x" y)
    (builtins.unsafeGetAttrPos "d" z)
    (builtins.unsafeGetAttrPos "x" z)
  ]