nix-gh/tests/lang/parse-fail-dup-attrs-2.nix
2005-03-10 11:33:46 +00:00

14 lines
100 B
Nix

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