Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-fn-arg-move.rs
blob: a57e9b932f1154764c7e827984149a998ac7c49b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
f
(
i
:
Box
<
isize
>)
{
assert_eq
!(*
i
,
100
);
}
pub
fn
main
()
{
let
i
=
Box
::
new
(
100
);
f
(
i
);
}