diff options
Diffstat (limited to 'bin/tests/data/unquoted_splices.nix')
-rw-r--r-- | bin/tests/data/unquoted_splices.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/tests/data/unquoted_splices.nix b/bin/tests/data/unquoted_splices.nix deleted file mode 100644 index 30935b0..0000000 --- a/bin/tests/data/unquoted_splices.nix +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | let | ||
2 | x = 2; | ||
3 | y = 3; | ||
4 | a = { "2" = y; }; | ||
5 | in | ||
6 | [ | ||
7 | ${x} | ||
8 | ${toString (x + y)} | ||
9 | a.${toString x} | ||
10 | |||
11 | # multiline test | ||
12 | ${ | ||
13 | toString x | ||
14 | } | ||
15 | ] | ||