1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-10 04:43:53 +02:00

parser: Allow mixed nested and top-level attrpaths

Fixes #2077.
This commit is contained in:
Félix Baylac-Jacqué 2018-04-18 18:39:40 +02:00
parent 10d33452e2
commit 00584bb091
No known key found for this signature in database
GPG key ID: EFD315F31848DBA4
5 changed files with 28 additions and 8 deletions

View file

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

View file

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

View file

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