blob: 63e93cdff7e7729465df974e48e7a99cdebb994d [file] [log] [blame]
// edition:2018
// check-pass
#![no_std]
#![crate_type = "rlib"]
use core::future::Future;
async fn a(f: impl Future) {
f.await;
}
fn main() {}