]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-21332.stderr
New upstream version 1.67.1+dfsg1
[rustc.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`.