guix/tests/lang/parse-fail-dup-attrs-2.nix

14 lines
100 B
Nix
Raw Normal View History

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