Explicitly catch common errors (trying to escape line breaks, badly escaping interpolations) to provide better messages and user guidance for these cases. Change-Id: I3dd1b2ad3bca33be393e65be5e72f4fb9544a46a
7 lines
455 B
Plaintext
7 lines
455 B
Plaintext
warning: \{ is an ill-defined escape. You can drop the \ and simply write { instead. If you meant to escape an interpolation, write \${ instead. Use --extra-deprecated-features broken-string-escape to silence this warning.
|
|
at /pwd/in.nix:7:33:
|
|
6| "escape: \"quote\" \n \\"
|
|
7| "\${escaped interpolation}, $\{wrongly escaped interpolation}"
|
|
| ^
|
|
8| "end
|