rust/src/test/ui/issues/issue-21332.stderr

13 lines
485 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0053]: method `next` has an incompatible type for trait
--> $DIR/issue-21332.rs:5:27
2018-07-15 16:11:54 -05:00
|
LL | fn next(&mut self) -> Result<i32, i32> { Ok(7) }
| ^^^^^^^^^^^^^^^^ expected enum `Option`, found enum `Result`
2018-07-15 16:11:54 -05:00
|
= note: expected fn pointer `fn(&mut S) -> Option<i32>`
2021-01-28 10:01:36 -06:00
found fn pointer `fn(&mut S) -> Result<i32, i32>`
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0053`.