2017-12-10 23:35:53 -08:00
|
|
|
error: character literal may only contain one codepoint
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/str-as-char.rs:4:14
|
2017-12-10 23:35:53 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | println!('●●');
|
2017-12-10 23:35:53 -08:00
|
|
|
| ^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2017-12-10 23:35:53 -08:00
|
|
|
help: if you meant to write a `str` literal, use double quotes
|
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | println!("●●");
|
2021-06-21 19:07:19 -07:00
|
|
|
| ~~~~
|
2017-12-10 23:35:53 -08:00
|
|
|
|
2019-05-02 20:56:07 +03:00
|
|
|
error: aborting due to previous error
|
2017-12-10 23:35:53 -08:00
|
|
|
|