Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-assign-copy.rs
blob: f62984cca6607d7668df6849ce4bfe631e08ce1b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
mut
i
:
Box
<
_
>
=
Box
::
new
(
1
);
// Should be a copy
let
mut
j
;
j
=
i
.
clone
();
*
i
=
2
;
*
j
=
3
;
assert_eq
!(*
i
,
2
);
assert_eq
!(*
j
,
3
);
}