1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-09 03:43:54 +02:00

* Regression test.

This commit is contained in:
Eelco Dolstra 2008-02-05 13:25:18 +00:00
parent 66c51dc215
commit e7bdde981f
2 changed files with 9 additions and 2 deletions

View file

@ -110,4 +110,11 @@ let
And finally to interpret \n etc. as in a string: ''\n, ''\r, ''\t.
'';
in s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10 + s11 + s12 + s13 + s14
# Regression test: antiquotation in '${x}' should work, but didn't.
s15 = let x = "bla"; in ''
foo
'${x}'
bar
'';
in s1 + s2 + s3 + s4 + s5 + s6 + s7 + s8 + s9 + s10 + s11 + s12 + s13 + s14 + s15