mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
152 B
Rust
14 lines
152 B
Rust
// edition:2018
|
|
// check-pass
|
|
|
|
#![no_std]
|
|
#![crate_type = "rlib"]
|
|
|
|
use core::future::Future;
|
|
|
|
async fn a(f: impl Future) {
|
|
f.await;
|
|
}
|
|
|
|
fn main() {}
|