summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-104392.stderr
blob: 8e466439ae6432b45a7bb65de14c96558c8766b7 (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
25
26
27
error: expected `{`, found `92`
  --> $DIR/issue-104392.rs:2:14
   |
LL |     { unsafe 92 }
   |       ------ ^^ expected `{`
   |       |
   |       while parsing this `unsafe` expression
   |
help: try placing this code inside a block
   |
LL |     { unsafe { 92 } }
   |              +    +

error: expected identifier, found `92`
  --> $DIR/issue-104392.rs:6:11
   |
LL |     { mod 92 }
   |           ^^ expected identifier

error: expected identifier, found `92`
  --> $DIR/issue-104392.rs:10:13
   |
LL |     { trait 92 }
   |             ^^ expected identifier

error: aborting due to 3 previous errors