Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(coverage_attribute)]
#![feature(noop_waker)]
//@ edition: 2021
//@ aux-build: executor.rs
extern crate executor;
fn main() {
for i in 0..16 {
let future = async {
if i >= 12 {
println!("big");
} else {
println!("small");
}
};
executor::block_on(future);