Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
cloning-in-async-block-121547.rs
blob: b2d8dbae977e436181647dc7168b29cff32eee7c [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
async
fn
clone_async_block
(
value
:
String
)
{
for
_ in
0.
.
10
{
async
{
//~ ERROR: use of moved value: `value` [E0382]
drop
(
value
);
//~^ HELP: consider cloning the value if the performance cost is acceptable
}.
await
}
}
fn
main
()
{}