Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
liveness
/
liveness-move-call-arg-2.rs
blob: b93535c89b19eab71adba14af08644327f4e91bf [
file
] [
log
] [
blame
] [
edit
]
fn
take
(
_x
:
Box
<
isize
>)
{}
fn
main
()
{
let
_
=
||
{
let
x
:
Box
<
isize
>
=
Box
::
new
(
25
);
loop
{
take
(
x
);
//~ ERROR use of moved value: `x`
}
};
}