Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
unique
/
unique-move-temp.rs
blob: 103af8e1f1e02bd4f481f872a60577473277743e [
file
] [
log
] [
blame
]
// run-pass
#![
allow
(
unused_mut
)]
pub
fn
main
()
{
let
mut
i
:
Box
<
_
>;
i
=
Box
::
new
(
100
);
assert_eq
!(*
i
,
100
);
}