2019-04-25 08:48:25 +00:00
|
|
|
error: empty character literal
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/lex-bad-char-literals-7.rs:2:20
|
2019-04-25 08:48:25 +00:00
|
|
|
|
|
|
|
|
LL | let _: char = '';
|
2021-01-23 20:48:31 +00:00
|
|
|
| ^ empty character literal
|
2019-04-25 08:48:25 +00:00
|
|
|
|
2021-01-23 20:48:31 +00:00
|
|
|
error: empty unicode escape
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/lex-bad-char-literals-7.rs:4:20
|
2019-04-25 08:48:25 +00:00
|
|
|
|
|
|
|
|
LL | let _: char = '\u{}';
|
2021-01-23 20:48:31 +00:00
|
|
|
| ^^^^ this escape must have at least 1 hex digit
|
2019-04-25 08:48:25 +00:00
|
|
|
|
2020-06-10 09:55:50 +00:00
|
|
|
error[E0762]: unterminated character literal
|
2020-01-08 18:25:42 +00:00
|
|
|
--> $DIR/lex-bad-char-literals-7.rs:11:13
|
2019-04-25 08:48:25 +00:00
|
|
|
|
|
|
|
|
LL | let _ = ' hello // here's a comment
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2020-06-10 09:55:50 +00:00
|
|
|
For more information about this error, try `rustc --explain E0762`.
|