Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
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
)
{}