about summary refs log tree commit diff
path: root/tests/ui/span/issue-81800.stderr
blob: c1583c3ef8f881e62beb69b030d3b4bce0dc8fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: unknown start of token: \u{2c2}
  --> $DIR/issue-81800.rs:1:5
   |
LL | fn x˂-
   |     ^
   |
help: Unicode character '˂' (Modifier Letter Left Arrowhead) looks like '<' (Less-Than Sign), but it is not
   |
LL - fn x˂-
LL + fn x<-
   |

error: expected one of `#`, `>`, `const`, identifier, or lifetime, found `-`
  --> $DIR/issue-81800.rs:1:6
   |
LL | fn x˂-
   |      ^ expected one of `#`, `>`, `const`, identifier, or lifetime

error: aborting due to 2 previous errors