Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
array-slice-vec
/
show-boxed-slice.rs
blob: dfa4c720bb09aeaf0aa13b3ef9f5a7375a1b22a7 [
file
]
// run-pass
#[
derive
(
Debug
)]
struct
Foo
(
Box
<[
u8
]>);
pub
fn
main
()
{
println
!(
"{:?}"
,
Foo
(
Box
::
new
([
0
,
1
,
2
])));
}