rust/src/test/ui/str/str-as-char.stderr

13 lines
305 B
Plaintext
Raw Normal View History

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