about summary refs log tree commit diff
path: root/tests/lang/parse-fail-dup-attrs-1.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/parse-fail-dup-attrs-1.nix')
-rw-r--r--tests/lang/parse-fail-dup-attrs-1.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lang/parse-fail-dup-attrs-1.nix b/tests/lang/parse-fail-dup-attrs-1.nix
new file mode 100644
index 000000000000..2c02317d2a19
--- /dev/null
+++ b/tests/lang/parse-fail-dup-attrs-1.nix
@@ -0,0 +1,4 @@
+{ x = 123;
+  y = 456;
+  x = 789;
+}