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