summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/recover-missing-semi.stderr
blob: ba47982853871fecc709ab4ebdf546f65ef2da86 (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
28
29
30
31
32
33
34
35
36
37
error: expected `;`, found keyword `let`
  --> $DIR/recover-missing-semi.rs:2:22
   |
LL |     let _: usize = ()
   |                      ^ help: add `;` here
...
LL |     let _ = 3;
   |     --- unexpected token

error: expected `;`, found keyword `return`
  --> $DIR/recover-missing-semi.rs:9:22
   |
LL |     let _: usize = ()
   |                      ^ help: add `;` here
...
LL |     return 3;
   |     ------ unexpected token

error[E0308]: mismatched types
  --> $DIR/recover-missing-semi.rs:2:20
   |
LL |     let _: usize = ()
   |            -----   ^^ expected `usize`, found `()`
   |            |
   |            expected due to this

error[E0308]: mismatched types
  --> $DIR/recover-missing-semi.rs:9:20
   |
LL |     let _: usize = ()
   |            -----   ^^ expected `usize`, found `()`
   |            |
   |            expected due to this

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0308`.