Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
box
/
unit
/
unique-mutable.rs
blob: 284b419f5a1d4a965ccba2ec1eef2b085652878f [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
mut
i
:
Box
<
_
>
=
Box
::
new
(
0
);
*
i
=
1
;
assert_eq
!(*
i
,
1
);
}