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