aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/parse-okay-mixed-nested-attrs-3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/parse-okay-mixed-nested-attrs-3.nix')
-rw-r--r--test/testdata/parse-okay-mixed-nested-attrs-3.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testdata/parse-okay-mixed-nested-attrs-3.nix b/test/testdata/parse-okay-mixed-nested-attrs-3.nix
new file mode 100644
index 0000000..45a33e4
--- /dev/null
+++ b/test/testdata/parse-okay-mixed-nested-attrs-3.nix
@@ -0,0 +1,7 @@
1{
2 services.ssh.enable = true;
3 services.ssh = { port = 123; };
4 services = {
5 httpd.enable = true;
6 };
7}