Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
borrowck-reinit.rs
blob: 866b3a2a8af9b485346667b1522910c8e1a79a5b [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
mut
x
=
Box
::
new
(
0
);
let
_u
=
x
;
// error shouldn't note this move
x
=
Box
::
new
(
1
);
drop
(
x
);
let
_
=
(
1
,
x
);
//~ ERROR use of moved value: `x`
}