2023-05-01 12:05:20 -07:00
|
|
|
error[E0277]: the trait bound `Result<u32, i32>: From<Result<u64, i32>>` is not satisfied
|
|
|
|
--> $DIR/issue-88696.rs:9:9
|
|
|
|
|
|
|
|
|
LL | a().into()
|
2024-10-24 21:14:17 +00:00
|
|
|
| ^^^^ the trait `From<Result<u64, i32>>` is not implemented for `Result<u32, i32>`
|
2023-05-01 12:05:20 -07:00
|
|
|
|
|
|
|
|
= note: required for `Result<u64, i32>` to implement `Into<Result<u32, i32>>`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-05-01 12:05:20 -07:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|