diff options
Diffstat (limited to 'test/testdata/eval-okay-inherit-attr-pos.nix')
-rw-r--r-- | test/testdata/eval-okay-inherit-attr-pos.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-inherit-attr-pos.nix b/test/testdata/eval-okay-inherit-attr-pos.nix new file mode 100644 index 0000000..017ab1d --- /dev/null +++ b/test/testdata/eval-okay-inherit-attr-pos.nix | |||
@@ -0,0 +1,12 @@ | |||
1 | let | ||
2 | d = 0; | ||
3 | x = 1; | ||
4 | y = { inherit d x; }; | ||
5 | z = { inherit (y) d x; }; | ||
6 | in | ||
7 | [ | ||
8 | (builtins.unsafeGetAttrPos "d" y) | ||
9 | (builtins.unsafeGetAttrPos "x" y) | ||
10 | (builtins.unsafeGetAttrPos "d" z) | ||
11 | (builtins.unsafeGetAttrPos "x" z) | ||
12 | ] | ||