mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
338 B
Plaintext
14 lines
338 B
Plaintext
error: character literal may only contain one codepoint
|
|
--> $DIR/lex-bad-str-literal-as-char-2.rs:3:14
|
|
|
|
|
LL | println!(' 1 + 1');
|
|
| ^^^^^^^^
|
|
|
|
|
help: if you meant to write a string literal, use double quotes
|
|
|
|
|
LL | println!(" 1 + 1");
|
|
| ~ ~
|
|
|
|
error: aborting due to 1 previous error
|
|
|