Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
async-await
/
no-std.rs
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
()
{}