Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
borrowck
/
issue-58776-borrowck-scans-children.rs
blob: efa313a9d23f4c2ec6ae533dc923e881d6f79944 [
file
] [
log
] [
blame
]
fn
main
()
{
let
mut
greeting
=
"Hello world!"
.
to_string
();
let
res
=
(||
(||
&
greeting
)())();
greeting
=
"DEALLOCATED"
.
to_string
();
//~^ ERROR cannot assign
drop
(
greeting
);
//~^ ERROR cannot move
println
!(
"thread result: {:?}"
,
res
);
}