mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
24 lines
851 B
Plaintext
24 lines
851 B
Plaintext
error[E0308]: `if` and `else` have incompatible types
|
|
--> $DIR/issue-101065.rs:12:9
|
|
|
|
|
LL | let _x = if true {
|
|
| ______________-
|
|
LL | | FakeResult::Ok(FakeResult::Ok(()))
|
|
| | ---------------------------------- expected because of this
|
|
LL | | } else {
|
|
LL | | FakeResult::Ok(())
|
|
| | ^^^^^^^^^^^^^^^^^^ expected `FakeResult<FakeResult<()>>`, found `FakeResult<()>`
|
|
LL | | };
|
|
| |_____- `if` and `else` have incompatible types
|
|
|
|
|
= note: expected enum `FakeResult<FakeResult<()>>`
|
|
found enum `FakeResult<()>`
|
|
help: try wrapping the expression in `FakeResult::Ok`
|
|
|
|
|
LL | FakeResult::Ok(FakeResult::Ok(()))
|
|
| +++++++++++++++ +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|