blob: 982648f5b237cc0a391a8cb2f2a11f18c18736c1 [file] [log] [blame]
#![feature(box_patterns)]
struct A;
fn main() {
let a: Box<[A]> = Box::new([A]);
match a { //~ ERROR cannot move out of type `[A]`, a non-copy slice
box [a] => {},
_ => {}
}
}