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