2017-12-11 01:35:53 -06:00
|
|
|
error: character literal may only contain one codepoint
|
2018-05-03 13:26:58 -05:00
|
|
|
--> $DIR/str-as-char.rs:14:14
|
2017-12-11 01:35:53 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | println!('●●');
|
2017-12-11 01:35:53 -06:00
|
|
|
| ^^^^
|
|
|
|
help: if you meant to write a `str` literal, use double quotes
|
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | println!("●●");
|
2017-12-11 01:35:53 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|