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
4 changed files with 16 additions and 0 deletions
@@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.z = 3;
}
@@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.q = 3;
}
@@ -0,0 +1,4 @@
{
x.q = 3;
x = { y = 3; z = 3; };
}
+4
View File
@@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.q = 3;
}