1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +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

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