0
0
Fork 0
forked from lix-project/lix
lix/tests/lang/parse-fail-dup-attrs-3.nix

14 lines
104 B
Nix
Raw Normal View History

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