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
|
|
|
|
|
2024-03-13 23:52:04 +00:00
|
|
|
help: if you meant to write a string literal, use double quotes
|
2017-12-10 23:35:53 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | println!("●●");
|
2024-03-09 01:07:23 +00:00
|
|
|
| ~ ~
|
2017-12-10 23:35:53 -08:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 23:35:53 -08:00
|
|
|
|