os-rust/tests/ui/lexer/lex-bad-char-literals-2.stderr

14 lines
280 B
Text
Raw Normal View History

2019-01-20 04:37:58 +09:00
error: character literal may only contain one codepoint
--> $DIR/lex-bad-char-literals-2.rs:3:5
2018-10-20 23:36:17 +03:00
|
2019-03-09 15:03:44 +03:00
LL | 'nope'
2018-10-20 23:36:17 +03:00
| ^^^^^^
|
help: if you meant to write a `str` literal, use double quotes
|
LL | "nope"
| ~~~~~~
2018-10-20 23:36:17 +03:00
error: aborting due to previous error
2018-10-20 23:36:17 +03:00