rust/tests/ui/lexer/lex-bad-char-literals-7.stderr

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

22 lines
613 B
Plaintext
Raw Normal View History

error: empty character literal
2020-01-08 18:25:42 +00:00
--> $DIR/lex-bad-char-literals-7.rs:2:20
|
LL | let _: char = '';
| ^ empty character literal
error: empty unicode escape
2020-01-08 18:25:42 +00:00
--> $DIR/lex-bad-char-literals-7.rs:4:20
|
LL | let _: char = '\u{}';
| ^^^^ this escape must have at least 1 hex digit
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
|
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`.