2018-07-15 21:11:54 +00:00
|
|
|
error[E0053]: method `next` has an incompatible type for trait
|
2021-04-08 17:16:15 +00:00
|
|
|
--> $DIR/issue-21332.rs:5:27
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | fn next(&mut self) -> Result<i32, i32> { Ok(7) }
|
2024-07-05 20:58:33 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ expected `Option<i32>`, found `Result<i32, i32>`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(&mut S) -> Option<i32>`
|
|
|
|
found signature `fn(&mut S) -> Result<i32, i32>`
|
2024-07-05 20:58:33 +00:00
|
|
|
help: change the output type to match the trait
|
|
|
|
|
|
|
|
|
LL | fn next(&mut self) -> Option<i32> { Ok(7) }
|
|
|
|
| ~~~~~~~~~~~
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0053`.
|