mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

Go over all structured parser suggestions and make them verbose style. When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
49 lines
793 B
Plaintext
49 lines
793 B
Plaintext
error: character constant must be escaped: `'`
|
|
--> $DIR/bad-char-literals.rs:6:6
|
|
|
|
|
LL | ''';
|
|
| ^
|
|
|
|
|
help: escape the character
|
|
|
|
|
LL | '\'';
|
|
| ~~
|
|
|
|
error: character constant must be escaped: `\n`
|
|
--> $DIR/bad-char-literals.rs:10:6
|
|
|
|
|
LL | '
|
|
| ______^
|
|
LL | | ';
|
|
| |_
|
|
|
|
|
help: escape the character
|
|
|
|
|
LL | '\n';
|
|
| ++
|
|
|
|
error: character constant must be escaped: `\r`
|
|
--> $DIR/bad-char-literals.rs:15:6
|
|
|
|
|
LL | '
|
|
';
|
|
| ^
|
|
|
|
|
help: escape the character
|
|
|
|
|
LL | '\r';
|
|
| ++
|
|
|
|
error: character constant must be escaped: `\t`
|
|
--> $DIR/bad-char-literals.rs:18:6
|
|
|
|
|
LL | ' ';
|
|
| ^^^^
|
|
|
|
|
help: escape the character
|
|
|
|
|
LL | '\t';
|
|
| ++
|
|
|
|
error: aborting due to 4 previous errors
|
|
|