Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-22403.rs
blob: 89c956913f932c85be4f6506a092e9f948dce7e0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
main
()
{
let
x
=
Box
::
new
([
1
,
2
,
3
]);
let
y
=
x
as
Box
<[
i32
]>;
println
!(
"y: {:?}"
,
y
);
}