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