2019-01-20 04:37:58 +09:00
|
|
|
error: character literal may only contain one codepoint
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $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
|
|
|
| ^^^^^^
|
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
|
2019-04-25 11:48:25 +03:00
|
|
|
|
|
|
|
|
LL | "nope"
|
2024-03-09 01:07:23 +00:00
|
|
|
| ~ ~
|
2018-10-20 23:36:17 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-10-20 23:36:17 +03:00
|
|
|
|