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) {}