Sign in
rust
/
rust
/
0e252dfa22dd03f8a87f665d0ebe1192a5da07bf
/
.
/
tests
/
ui
/
array-slice-vec
/
show-boxed-slice.rs
blob: 89521eaf3fef1e155a27348b5eefc7e078273141 [
file
]
//@ run-pass
#[
derive
(
Debug
)]
struct
Foo
(#[
allow
(
dead_code
)]
Box
<[
u8
]>);
pub
fn
main
()
{
println
!(
"{:?}"
,
Foo
(
Box
::
new
([
0
,
1
,
2
])));
}