blob: 89521eaf3fef1e155a27348b5eefc7e078273141 [file] [log] [blame]
//@ run-pass
#[derive(Debug)]
struct Foo(#[allow(dead_code)] Box<[u8]>);
pub fn main() {
println!("{:?}", Foo(Box::new([0, 1, 2])));
}