blob: 540a1b55376ff393a8f298775d433ba393a23ca8 [file] [log] [blame]
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