summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-62913.stderr
blob: c33e46837287f85d38042109104a8d955d8481b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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\"
   |     ^ invalid trailing slash in literal

error: expected item, found `"\u\"`
  --> $DIR/issue-62913.rs:1:1
   |
LL | "\u\"
   | ^^^^^^ expected item
   |
   = note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>

error: aborting due to 3 previous errors