Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-3290.rs
blob: 50c432288ce180561ccebd1ebc015c4d74e0a9c6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
pub
fn
main
()
{
let
mut
x
:
Box
<
_
>
=
Box
::
new
(
3
);
x
=
x
;
assert_eq
!(*
x
,
3
);
}