mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
309 B
Plaintext
14 lines
309 B
Plaintext
error: character literal may only contain one codepoint
|
|
--> $DIR/str-as-char.rs:4:14
|
|
|
|
|
LL | println!('●●');
|
|
| ^^^^
|
|
|
|
|
help: if you meant to write a `str` literal, use double quotes
|
|
|
|
|
LL | println!("●●");
|
|
| ~~~~
|
|
|
|
error: aborting due to previous error
|
|
|