1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/lang/parse-fail-dup-attrs-3.nix
2005-03-10 11:33:46 +00:00

14 lines
104 B
Nix

let {
as = {
x = 123;
y = 456;
};
bs = rec {
x = 789;
inherit (as) x;
};
}