Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
async-closures
/
higher-ranked.rs
blob: 5b34bfce96187e0d89312d01e1f8ade08b24f433 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:block-on.rs
//@ edition:2021
//@ build-pass
#![
feature
(
async_closure
)]
extern
crate block_on
;
fn
main
()
{
block_on
::
block_on
(
async
{
let
x
=
async
move
|
x
:
&
str
|
{
println
!(
"{x}"
);
};
x
(
"hello!"
).
await
;
});
}