rust/tests/ui/parser/trailing-carriage-return-in-string.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
346 B
Plaintext
Raw Normal View History

error: unknown character escape: `\r`
--> $DIR/trailing-carriage-return-in-string.rs:10:25
2018-10-20 20:36:17 +00:00
|
LL | let bad = "This is \ a test";
| ^ unknown character escape
2018-10-20 20:36:17 +00:00
|
= help: this is an isolated carriage return; consider checking your editor and version control settings
2018-10-20 20:36:17 +00:00
error: aborting due to previous error