2022-09-09 05:50:25 +00:00
|
|
|
error[E0308]: `match` arms have incompatible types
|
|
|
|
--> $DIR/issue-101465.rs:20:18
|
|
|
|
|
|
|
|
|
LL | / match true {
|
|
|
|
LL | | true => B,
|
|
|
|
| | - this is found to be of type `B`
|
|
|
|
LL | | false => C,
|
2023-01-03 02:00:33 +00:00
|
|
|
| | ^ expected `B`, found `C`
|
2022-09-09 05:50:25 +00:00
|
|
|
LL | |
|
|
|
|
LL | | }
|
|
|
|
| |_____- `match` arms have incompatible types
|
|
|
|
|
|
|
|
|
help: you could change the return type to be a boxed trait object
|
|
|
|
|
|
|
|
|
LL | fn foo() -> Box<dyn Tr> {
|
|
|
|
| ~~~~~~~ +
|
|
|
|
help: if you change the return type to expect trait objects, box the returned expressions
|
|
|
|
|
|
|
|
|
LL ~ true => Box::new(B),
|
|
|
|
LL ~ false => Box::new(C),
|
|
|
|
|
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-09 05:50:25 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|