blob: 4324a0229a6ff2673fe5211bf501500e904bfe3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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) {}
|