From 00584bb0915ee21fb01e9390a901161bdd988197 Mon Sep 17 00:00:00 2001 From: Félix Baylac-Jacqué Date: Wed, 18 Apr 2018 18:39:40 +0200 Subject: parser: Allow mixed nested and top-level attrpaths Fixes #2077. --- tests/lang/parse-fail-mixed-nested-attrs2.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/lang/parse-fail-mixed-nested-attrs2.nix (limited to 'tests/lang/parse-fail-mixed-nested-attrs2.nix') diff --git a/tests/lang/parse-fail-mixed-nested-attrs2.nix b/tests/lang/parse-fail-mixed-nested-attrs2.nix new file mode 100644 index 000000000000..17da82e5f0c7 --- /dev/null +++ b/tests/lang/parse-fail-mixed-nested-attrs2.nix @@ -0,0 +1,4 @@ +{ + x.y.y = 3; + x = { y.y= 3; z = 3; }; +} -- cgit 1.4.1