2021-04-06 19:23:48 -05:00
|
|
|
error[E0308]: `if` and `else` have incompatible types
|
|
|
|
--> $DIR/issue-83943.rs:7:9
|
|
|
|
|
|
|
|
|
LL | / if true {
|
|
|
|
LL | | "A".to_string()
|
|
|
|
| | --------------- expected because of this
|
|
|
|
LL | | } else {
|
|
|
|
LL | | "B"
|
2021-06-28 13:22:47 -05:00
|
|
|
| | ^^^- help: try using a conversion method: `.to_string()`
|
2021-04-06 19:23:48 -05:00
|
|
|
| | |
|
2023-01-02 20:00:33 -06:00
|
|
|
| | expected `String`, found `&str`
|
2021-04-06 19:23:48 -05:00
|
|
|
LL | | };
|
|
|
|
| |_____- `if` and `else` have incompatible types
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|