summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-110014.stderr
blob: 7f1dd592e1238bdb4d38aed87f3879502ca5229a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: unknown start of token: `
  --> $DIR/issue-110014.rs:1:3
   |
LL | fn`2222222222222222222222222222222222222222() {}
   |   ^
   |
help: Unicode character '`' (Grave Accent) looks like ''' (Single Quote), but it is not
   |
LL | fn'2222222222222222222222222222222222222222() {}
   |   ~

error: expected identifier, found `2222222222222222222222222222222222222222`
  --> $DIR/issue-110014.rs:1:4
   |
LL | fn`2222222222222222222222222222222222222222() {}
   |    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected identifier

error: aborting due to 2 previous errors