1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

parser-state: fix attribute merging

(cherry picked from commit 8034589d7e)
This commit is contained in:
Ryan Hendrickson 2024-08-14 00:05:06 -04:00 committed by Mergify
parent 85a4f62400
commit 5575a2f1c3
8 changed files with 133 additions and 52 deletions

View file

@ -1,6 +1,6 @@
error: attribute 'z' already defined at «stdin»:3:16
at «stdin»:2:3:
1| {
error: attribute 'x.z' already defined at «stdin»:2:3
at «stdin»:3:16:
2| x.z = 3;
| ^
3| x = { y = 3; z = 3; };
| ^
4| }