2021-01-23 14:48:31 -06:00
|
|
|
error: character constant must be escaped: `'`
|
2020-01-08 12:25:42 -06:00
|
|
|
--> $DIR/bad-char-literals.rs:6:6
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
LL | ''';
|
2021-01-23 14:48:31 -06:00
|
|
|
| ^ help: escape the character: `\'`
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2021-01-23 14:48:31 -06:00
|
|
|
error: character constant must be escaped: `\n`
|
2020-01-08 12:25:42 -06:00
|
|
|
--> $DIR/bad-char-literals.rs:10:6
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
LL | '
|
|
|
|
| ______^
|
|
|
|
LL | | ';
|
2021-01-23 14:48:31 -06:00
|
|
|
| |_ help: escape the character: `\n`
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2021-01-23 14:48:31 -06:00
|
|
|
error: character constant must be escaped: `\r`
|
2020-01-08 12:25:42 -06:00
|
|
|
--> $DIR/bad-char-literals.rs:15:6
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | '
';
|
2021-01-23 14:48:31 -06:00
|
|
|
| ^ help: escape the character: `\r`
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2021-01-23 14:48:31 -06:00
|
|
|
error: character constant must be escaped: `\t`
|
2020-01-08 12:25:42 -06:00
|
|
|
--> $DIR/bad-char-literals.rs:18:6
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
|
LL | ' ';
|
2021-01-23 14:48:31 -06:00
|
|
|
| ^^^^ help: escape the character: `\t`
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|