]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-21332.stderr
Rollup merge of #52813 - newpavlov:duration_mul_div_extras, r=alexcrichton
[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:15:5
3    |
4 LL |     fn next(&mut self) -> Result<i32, i32> { Ok(7) }
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected enum `std::option::Option`, found enum `std::result::Result`
6    |
7    = note: expected type `fn(&mut S) -> std::option::Option<i32>`
8               found type `fn(&mut S) -> std::result::Result<i32, i32>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0053`.