aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/parse-okay-ind-string.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/parse-okay-ind-string.nix')
-rw-r--r--test/testdata/parse-okay-ind-string.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/testdata/parse-okay-ind-string.nix b/test/testdata/parse-okay-ind-string.nix
new file mode 100644
index 0000000..97c9de3
--- /dev/null
+++ b/test/testdata/parse-okay-ind-string.nix
@@ -0,0 +1,31 @@
1let
2 string = "str";
3in [
4 /some/path
5
6 ''${/some/path}''
7
8 ''
9 ${/some/path}''
10
11 ''${/some/path}
12 end''
13
14 string
15
16 ''${string}''
17
18 ''
19 ${string}''
20
21 ''${string}
22 end''
23
24 ''''
25
26 ''
27 ''
28
29 ''
30 end''
31]