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