1 2 3 4 5 6 7 8 9 10 11 12
// compile-pass #![deny(dead_code)] const LEN: usize = 4; #[derive(Debug)] struct Wrapper([u8; LEN]); fn main() { println!("{:?}", Wrapper([0, 1, 2, 3])); }