mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
40 lines
832 B
Text
40 lines
832 B
Text
error[E0308]: mismatched types
|
|
--> $DIR/try-operator-dont-suggest-semicolon.rs:7:9
|
|
|
|
|
LL | b()
|
|
| ^^^ expected `()`, found `i32`
|
|
|
|
|
help: consider using a semicolon here
|
|
|
|
|
LL | b();
|
|
| +
|
|
help: try adding a return type
|
|
|
|
|
LL | a(|| -> i32 {
|
|
| ++++++
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/try-operator-dont-suggest-semicolon.rs:17: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`.
|