2019-07-23 16:28:20 -07:00
|
|
|
error: incorrect unicode escape sequence
|
|
|
|
--> $DIR/issue-62913.rs:1:2
|
|
|
|
|
|
|
|
|
LL | "\u\"
|
|
|
|
| ^^^ incorrect unicode escape sequence
|
|
|
|
|
|
|
|
|
= help: format of unicode escape sequences is `\u{...}`
|
|
|
|
|
|
|
|
error: invalid trailing slash in literal
|
|
|
|
--> $DIR/issue-62913.rs:1:5
|
|
|
|
|
|
|
|
|
LL | "\u\"
|
2021-01-23 12:48:31 -08:00
|
|
|
| ^ invalid trailing slash in literal
|
2019-07-23 16:28:20 -07:00
|
|
|
|
2020-01-08 21:25:42 +03:00
|
|
|
error: expected item, found `"\u\"`
|
|
|
|
--> $DIR/issue-62913.rs:1:1
|
|
|
|
|
|
|
|
|
LL | "\u\"
|
|
|
|
| ^^^^^^ expected item
|
2023-09-06 09:05:07 +05:30
|
|
|
|
|
|
|
|
= note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
|
2020-01-08 21:25:42 +03:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-07-23 16:28:20 -07:00
|
|
|
|