Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
pretty
/
async.rs
blob: 573e79bffd7ef579e4fedd0343aa840c76e6161f [
file
] [
log
] [
blame
]
// pp-exact
// pretty-compare-only
// edition:2021
async
fn
f
()
{
let
first
=
async
{
1
};
let
second
=
async
move
{
2
};
join
(
first
,
second
).
await
}