* Check for duplicate attributes and formal parameters in Nix

expressions.
This commit is contained in:
Eelco Dolstra 2005-03-10 11:33:46 +00:00
parent 97c93526da
commit 08df443618
7 changed files with 93 additions and 1 deletions

View file

@ -0,0 +1,13 @@
let {
as = {
x = 123;
y = 456;
};
bs = rec {
x = 789;
inherit (as) x;
};
}