This commit is contained in:
Nilstrieb 2023-04-03 20:29:41 +02:00
parent 1767585509
commit 9e579cc10c

View File

@ -0,0 +1,24 @@
// check-pass
// edition:2018
fn main() {}
struct StructA {}
struct StructB {}
impl StructA {
fn fn_taking_struct_b(&self, struct_b: &StructB) -> bool {
true
}
}
async fn get_struct_a_async() -> StructA {
StructA {}
}
async fn ice() {
match Some(StructB {}) {
Some(struct_b) if get_struct_a_async().await.fn_taking_struct_b(&struct_b) => {}
_ => {}
}
}