// run-pass #![feature(unsized_locals)] fn main() { let foo: Box<[u8]> = Box::new(*b"foo"); let _foo: [u8] = *foo; }