rust/src/test/ui/async-await/no-std.rs
2020-03-17 22:17:31 +01:00

13 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() {}