diff options
Diffstat (limited to 'tests/lang/parse-fail-mixed-nested-attrs.nix')
-rw-r--r-- | tests/lang/parse-fail-mixed-nested-attrs.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lang/parse-fail-mixed-nested-attrs.nix b/tests/lang/parse-fail-mixed-nested-attrs.nix new file mode 100644 index 000000000000..458a7c545b97 --- /dev/null +++ b/tests/lang/parse-fail-mixed-nested-attrs.nix @@ -0,0 +1,4 @@ +{ + x = { y = 3; z = 3; }; + x.z = 3; +} |