rust/tests/ui/issues/issue-21332.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
646 B
Plaintext
Raw Normal View History

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