about summary refs log tree commit diff
path: root/tests/lang/parse-okay-mixed-nested-attrs-1.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-05-28T20·59+0200
committerEelco Dolstra <edolstra@gmail.com>2019-05-28T20·59+0200
commit9eaebbf575615e05e30bf4f8d7e2cf62967e7703 (patch)
treecdfd072bd1ef3f0dd8ac47cb7ee8534a248ee83c /tests/lang/parse-okay-mixed-nested-attrs-1.nix
parentbfc6bdf222d00d3cb1b0e168a5d55d1a7c9cdb72 (diff)
parentb2f3a7411a509d5df5a189066870a0f02b6523a9 (diff)
Merge branch 'attrPaths' of https://github.com/NinjaTrappeur/nix
Diffstat (limited to 'tests/lang/parse-okay-mixed-nested-attrs-1.nix')
-rw-r--r--tests/lang/parse-okay-mixed-nested-attrs-1.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-mixed-nested-attrs-1.nix b/tests/lang/parse-okay-mixed-nested-attrs-1.nix
new file mode 100644
index 000000000000..fd1001c8cafc
--- /dev/null
+++ b/tests/lang/parse-okay-mixed-nested-attrs-1.nix
@@ -0,0 +1,4 @@
+{ 
+  x = { y = 3; z = 3; }; 
+  x.q = 3; 
+}