Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
impl-trait
/
issue-99914.rs
blob: 4324a0229a6ff2673fe5211bf501500e904bfe3a [
file
] [
log
] [
blame
]
// edition:2021
fn
main
()
{}
struct
Error
;
struct
Okay
;
fn
foo
(
t
:
Result
<
Okay
,
Error
>)
{
t
.
and_then
(|
t
|
->
_
{
bar
(
t
)
});
//~^ ERROR mismatched types
}
async
fn
bar
(
t
:
Okay
)
{}