blob: 27d6336974c85e1df9c5ca2de0459a7c1d4bfa0e [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