mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
34 lines
752 B
Rust
34 lines
752 B
Rust
//@ known-bug: #124020
|
|
//@ compile-flags: -Zpolymorphize=on --edition=2018 --crate-type=lib
|
|
|
|
#![feature(async_closure, noop_waker, async_fn_traits)]
|
|
|
|
use std::future::Future;
|
|
use std::pin::pin;
|
|
use std::task::*;
|
|
|
|
pub fn block_on<T>(fut: impl Future<Output = T>) -> T {
|
|
let mut fut = pin!(fut);
|
|
let ctx = &mut Context::from_waker(Waker::noop());
|
|
|
|
loop {
|
|
match fut.as_mut().poll(ctx) {
|
|
Poll::Pending => {}
|
|
Poll::Ready(t) => break t,
|
|
}
|
|
}
|
|
}
|
|
|
|
async fn call_once(f: impl async FnOnce(DropMe)) {
|
|
f(DropMe("world")).await;
|
|
}
|
|
|
|
struct DropMe(&'static str);
|
|
|
|
pub fn future() {
|
|
block_on(async {
|
|
let async_closure = async move |a: DropMe| {};
|
|
call_once(async_closure).await;
|
|
});
|
|
}
|