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