tvl-depot/third_party/nix/tests/lang/parse-fail-dup-attrs-3.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
104 B
Nix
Raw Normal View History

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