diff options
author | Félix Baylac-Jacqué <felix@alternativebit.fr> | 2018-04-17T07·13+0200 |
---|---|---|
committer | Félix Baylac-Jacqué <felix@alternativebit.fr> | 2018-04-17T07·13+0200 |
commit | 10d33452e289ded93e192c7d99c1da08a52448e1 (patch) | |
tree | 6a8831f5f59133e2227402b6a8469f80a34f1099 /tests/lang/parse-okay-mixed-nested-attrs-2.nix | |
parent | d5c9315d84fe3f38924f98d6d2fe9b8691bfe9b5 (diff) |
nix-lang parser: Add mixed nested attrs tests.
Part of issue #2077
Diffstat (limited to 'tests/lang/parse-okay-mixed-nested-attrs-2.nix')
-rw-r--r-- | tests/lang/parse-okay-mixed-nested-attrs-2.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-mixed-nested-attrs-2.nix b/tests/lang/parse-okay-mixed-nested-attrs-2.nix new file mode 100644 index 000000000000..ad066b680384 --- /dev/null +++ b/tests/lang/parse-okay-mixed-nested-attrs-2.nix @@ -0,0 +1,4 @@ +{ + x.q = 3; + x = { y = 3; z = 3; }; +} |