blob: 605cb66df1cf02651e9fe92b7d6a6278256def83 [file] [log] [blame]
error: prefix `world` is unknown
--> $DIR/lex-bad-str-literal-as-char-3.rs:6:21
|
LL | println!('hello world');
| ^^^^^ unknown prefix
|
= note: prefixed identifiers and literals are reserved since Rust 2021
help: if you meant to write a string literal, use double quotes
|
LL - println!('hello world');
LL + println!("hello world");
|
error[E0762]: unterminated character literal
--> $DIR/lex-bad-str-literal-as-char-3.rs:6:26
|
LL | println!('hello world');
| ^^^
|
help: if you meant to write a string literal, use double quotes
|
LL - println!('hello world');
LL + println!("hello world");
|
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0762`.