aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/parse-fail-undef-var-2.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/parse-fail-undef-var-2.nix')
-rw-r--r--test/testdata/parse-fail-undef-var-2.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/testdata/parse-fail-undef-var-2.nix b/test/testdata/parse-fail-undef-var-2.nix
new file mode 100644
index 0000000..c10a52b
--- /dev/null
+++ b/test/testdata/parse-fail-undef-var-2.nix
@@ -0,0 +1,7 @@
1let {
2
3 f = {x, y : ["baz" "bar" z "bat"]}: x + y;
4
5 body = f {x = "foo"; y = "bar";};
6
7}