blob: 60eb182adf14546959ef6832ab03b92d300e6cf6 [file] [log] [blame]
error: character literal may only contain one codepoint
--> $DIR/str-as-char.rs:14:14
|
LL | println!('●●');
| ^^^^
help: if you meant to write a `str` literal, use double quotes
|
LL | println!("●●");
| ^^^^
error: aborting due to previous error