Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
array-slice-vec
/
show-boxed-slice.rs
blob: c10f779b1f6172f3dd543756c99cf65c46ff3839 [
file
] [
log
] [
blame
]
// run-pass
#[
derive
(
Debug
)]
struct
Foo
(#[
allow
(
unused_tuple_struct_fields
)]
Box
<[
u8
]>);
pub
fn
main
()
{
println
!(
"{:?}"
,
Foo
(
Box
::
new
([
0
,
1
,
2
])));
}