Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
binding
/
let-assignability.rs
blob: dab71253364ee8c20c374a8e4f12792197bce26b [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
f
()
{
let
a
:
Box
<
_
>
=
Box
::
new
(
1
);
let
b
:
&
isize
=
&*
a
;
println
!(
"{}"
,
b
);
}
pub
fn
main
()
{
f
();
}