hnix/tests/eval-compare/ind-string-15.nix
2018-04-10 14:57:50 -05:00

11 lines
145 B
Nix

let
# Regression test: antiquotation in '${x}' should work, but didn't.
s15 = let x = "bla"; in ''
foo
'${x}'
bar
'';
in s15