]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-21332.stderr
Merge commit '0cb0f7636851f9fcc57085cf80197a2ef6db098f' into clippyup
[rust.git] / src / test / ui / issues / issue-21332.stderr
1 error[E0053]: method `next` has an incompatible type for trait
2   --> $DIR/issue-21332.rs:5:27
3    |
4 LL |     fn next(&mut self) -> Result<i32, i32> { Ok(7) }
5    |                           ^^^^^^^^^^^^^^^^
6    |                           |
7    |                           expected enum `Option`, found enum `Result`
8    |                           help: change the output type to match the trait: `Option<i32>`
9    |
10    = note: expected fn pointer `fn(&mut S) -> Option<i32>`
11               found fn pointer `fn(&mut S) -> Result<i32, i32>`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0053`.