2019-07-23 23:28:20 +00: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 20:48:31 +00:00
|
|
|
| ^ invalid trailing slash in literal
|
2019-07-23 23:28:20 +00:00
|
|
|
|
2020-01-08 18:25:42 +00:00
|
|
|
error: expected item, found `"\u\"`
|
|
|
|
--> $DIR/issue-62913.rs:1:1
|
|
|
|
|
|
|
|
|
LL | "\u\"
|
|
|
|
| ^^^^^^ expected item
|
2023-09-06 03:35:07 +00:00
|
|
|
|
|
|
|
|
= note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
|
2020-01-08 18:25:42 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-07-23 23:28:20 +00:00
|
|
|
|