rust/tests/ui/array-slice-vec/show-boxed-slice.rs
2023-01-11 09:32:08 +00:00

9 lines
157 B
Rust

// run-pass
#[derive(Debug)]
struct Foo(#[allow(unused_tuple_struct_fields)] Box<[u8]>);
pub fn main() {
println!("{:?}", Foo(Box::new([0, 1, 2])));
}