about summary refs log tree commit diff
path: root/tests/lang/parse-fail-dup-attrs-7.nix
AgeCommit message (Collapse)AuthorFilesLines
2010-04-22 * Check for duplicate attribute names / function arguments. `makeEelco Dolstra1-0/+9
check' now succeeds :-) * An attribute set such as `{ foo = { enable = true; }; foo.port = 23; }' now parses. It was previously rejected, but I'm too lazy to implement the check. (The only reason to reject it is that the reverse, `{ foo.port = 23; foo = { enable = true; }; }', is rejected, which is kind of ugly.)