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