mirror of https://github.com/rust-lang/rust
34 lines
740 B
Plaintext
34 lines
740 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/try-operator-dont-suggest-semicolon.rs:6:9
|
|
|
|
|
LL | b()
|
|
| ^^^- help: consider using a semicolon here: `;`
|
|
| |
|
|
| expected `()`, found `i32`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/try-operator-dont-suggest-semicolon.rs:16:9
|
|
|
|
|
LL | / if true {
|
|
LL | |
|
|
LL | | x?
|
|
| | ^^ expected `()`, found integer
|
|
LL | |
|
|
LL | |
|
|
LL | |
|
|
LL | | }
|
|
| |_____- expected this to be `()`
|
|
|
|
|
help: consider using a semicolon here
|
|
|
|
|
LL | x?;
|
|
| +
|
|
help: consider using a semicolon here
|
|
|
|
|
LL | };
|
|
| +
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|