mirror of
https://github.com/NixOS/nix
synced 2025-07-10 04:43:53 +02:00
parent
10d33452e2
commit
00584bb091
5 changed files with 28 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
x = { y = 3; z = 3; };
|
||||
x.z = 3;
|
||||
x = { y = 3; z = 3; };
|
||||
}
|
4
tests/lang/parse-fail-mixed-nested-attrs2.nix
Normal file
4
tests/lang/parse-fail-mixed-nested-attrs2.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
x.y.y = 3;
|
||||
x = { y.y= 3; z = 3; };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
x = { y = 3; z = 3; };
|
||||
x.q = 3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue