diff options
Diffstat (limited to 'test/testdata/parse-fail-mixed-nested-attrs1.nix')
-rw-r--r-- | test/testdata/parse-fail-mixed-nested-attrs1.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/testdata/parse-fail-mixed-nested-attrs1.nix b/test/testdata/parse-fail-mixed-nested-attrs1.nix new file mode 100644 index 0000000..11e40e6 --- /dev/null +++ b/test/testdata/parse-fail-mixed-nested-attrs1.nix | |||
@@ -0,0 +1,4 @@ | |||
1 | { | ||
2 | x.z = 3; | ||
3 | x = { y = 3; z = 3; }; | ||
4 | } | ||