blob: 496ce4fb378aec933ca76baac9209e2391e38b3a [file] [log] [blame]
// compile-pass
#![deny(dead_code)]
const LEN: usize = 4;
#[derive(Debug)]
struct Wrapper([u8; LEN]);
fn main() {
println!("{:?}", Wrapper([0, 1, 2, 3]));
}