]> git.proxmox.com Git - rustc.git/blame - tests/ui/suggestions/recover-from-semicolon-trailing-item.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / suggestions / recover-from-semicolon-trailing-item.stderr
CommitLineData
0731742a
XL
1error: expected item, found `;`
2 --> $DIR/recover-from-semicolon-trailing-item.rs:2:9
3 |
4LL | mod M {};
5 | ^ help: remove this semicolon
6
7error: expected item, found `;`
8 --> $DIR/recover-from-semicolon-trailing-item.rs:4:12
9 |
10LL | struct S {};
11 | ^ help: remove this semicolon
12 |
13 = help: braced struct declarations are not followed by a semicolon
14
15error: expected item, found `;`
16 --> $DIR/recover-from-semicolon-trailing-item.rs:6:20
17 |
18LL | fn foo(a: usize) {};
19 | ^ help: remove this semicolon
20
21error[E0308]: mismatched types
22 --> $DIR/recover-from-semicolon-trailing-item.rs:10:20
23 |
24LL | let _: usize = S {};
9ffffee4 25 | ----- ^^^^ expected `usize`, found `S`
60c5eb7d
XL
26 | |
27 | expected due to this
0731742a
XL
28
29error[E0308]: mismatched types
30 --> $DIR/recover-from-semicolon-trailing-item.rs:12:20
31 |
32LL | let _: usize = X {};
9ffffee4 33 | ----- ^^^^ expected `usize`, found `X`
60c5eb7d
XL
34 | |
35 | expected due to this
0731742a
XL
36
37error[E0308]: mismatched types
38 --> $DIR/recover-from-semicolon-trailing-item.rs:14:9
39 |
40LL | foo("");
923072b8
FG
41 | --- ^^ expected `usize`, found `&str`
42 | |
43 | arguments to this function are incorrect
44 |
45note: function defined here
46 --> $DIR/recover-from-semicolon-trailing-item.rs:6:4
47 |
48LL | fn foo(a: usize) {};
49 | ^^^ --------
0731742a
XL
50
51error: aborting due to 6 previous errors
52
53For more information about this error, try `rustc --explain E0308`.