Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
src
/
tools
/
miri
/
tests
/
pass
/
move-arg-3-unique.rs
blob: 1b6e7ba7cf32ea7d9716be1c4a6a436778334210 [
file
]
fn
main
()
{
let
x
=
Box
::
new
(
10
);
let
y
=
x
;
assert_eq
!(*
y
,
10
);
}