diff options
author | Félix Baylac-Jacqué <felix@alternativebit.fr> | 2018-05-01 14:42:34 +0200 |
---|---|---|
committer | Félix Baylac-Jacqué <felix@alternativebit.fr> | 2018-05-01 14:42:34 +0200 |
commit | b2f3a7411a509d5df5a189066870a0f02b6523a9 (patch) | |
tree | c75555afb742c7da8d8e4858b4b8378fe3d87193 /tests/lang | |
parent | 00584bb0915ee21fb01e9390a901161bdd988197 (diff) |
nix-lang: Add deep nested mixed attrs test case.
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/parse-okay-mixed-nested-attrs-3.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-mixed-nested-attrs-3.nix b/tests/lang/parse-okay-mixed-nested-attrs-3.nix new file mode 100644 index 000000000..45a33e480 --- /dev/null +++ b/tests/lang/parse-okay-mixed-nested-attrs-3.nix @@ -0,0 +1,7 @@ +{ + services.ssh.enable = true; + services.ssh = { port = 123; }; + services = { + httpd.enable = true; + }; +} |