hnix/tests/eval-compare/ind-string-15.nix

11 lines
145 B
Nix
Raw Normal View History

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