mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
189 B
Rust
14 lines
189 B
Rust
// 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) {}
|