Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-21332.rs
blob: 4473d00fd5da2833daf8e4024434ccf71aa48c51 [
file
] [
log
] [
blame
] [
edit
]
struct
S
;
impl
Iterator
for
S
{
type
Item
=
i32
;
fn
next
(&
mut
self
)
->
Result
<
i32
,
i32
>
{
Ok
(
7
)
}
//~^ ERROR method `next` has an incompatible type for trait
//~| expected `Option<i32>`, found `Result<i32, i32>`
}
fn
main
()
{}