nix-lang parser: Add mixed nested attrs tests.

Part of issue #2077
This commit is contained in:
Félix Baylac-Jacqué 2018-04-17 09:13:01 +02:00
parent d5c9315d84
commit 10d33452e2
No known key found for this signature in database
GPG Key ID: EFD315F31848DBA4
4 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.z = 3;
}

View File

@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.q = 3;
}

View File

@ -0,0 +1,4 @@
{
x.q = 3;
x = { y = 3; z = 3; };
}

View File

@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.q = 3;
}