rust/tests/ui/lifetimes/issue-83737-binders-across-...

15 lines
243 B
Rust

//@ build-pass
//@ compile-flags: --edition 2018
//@ compile-flags: --crate-type rlib
use std::future::Future;
async fn handle<F>(slf: &F)
where
F: Fn(&()) -> Box<dyn Future<Output = ()> + Unpin>,
{
(slf)(&()).await;
}
fn main() {}