mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
613 B
Plaintext
22 lines
613 B
Plaintext
error: empty character literal
|
|
--> $DIR/lex-bad-char-literals-7.rs:2:20
|
|
|
|
|
LL | let _: char = '';
|
|
| ^ empty character literal
|
|
|
|
error: empty unicode escape
|
|
--> $DIR/lex-bad-char-literals-7.rs:4:20
|
|
|
|
|
LL | let _: char = '\u{}';
|
|
| ^^^^ this escape must have at least 1 hex digit
|
|
|
|
error[E0762]: unterminated character literal
|
|
--> $DIR/lex-bad-char-literals-7.rs:11:13
|
|
|
|
|
LL | let _ = ' hello // here's a comment
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0762`.
|