mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
4ae792036e
We have coverage tests that use async functions, but none that use async blocks.
36 lines
795 B
Rust
36 lines
795 B
Rust
#![feature(coverage_attribute)]
|
|
#![feature(noop_waker)]
|
|
// edition: 2021
|
|
|
|
fn main() {
|
|
for i in 0..16 {
|
|
let future = async {
|
|
if i >= 12 {
|
|
println!("big");
|
|
} else {
|
|
println!("small");
|
|
}
|
|
};
|
|
executor::block_on(future);
|
|
}
|
|
}
|
|
|
|
mod executor {
|
|
use core::future::Future;
|
|
use core::pin::pin;
|
|
use core::task::{Context, Poll, Waker};
|
|
|
|
#[coverage(off)]
|
|
pub fn block_on<F: Future>(mut future: F) -> F::Output {
|
|
let mut future = pin!(future);
|
|
let waker = Waker::noop();
|
|
let mut context = Context::from_waker(&waker);
|
|
|
|
loop {
|
|
if let Poll::Ready(val) = future.as_mut().poll(&mut context) {
|
|
break val;
|
|
}
|
|
}
|
|
}
|
|
}
|