Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
moves
/
move-arg-2-unique.rs
blob: d9a03be0ed2dc2d0a6a3c905de97df8777e1c39d [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
test
(
foo
:
Box
<
Vec
<
isize
>>
)
{
assert_eq
!((*
foo
)[
0
],
10
);
}
pub
fn
main
()
{
let
x
=
Box
::
new
(
vec
![
10
]);
// Test forgetting a local by move-in
test
(
x
);
// Test forgetting a temporary by move-in.
test
(
Box
::
new
(
vec
![
10
]));
}