summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-out-of-slice-1.rs
blob: 982648f5b237cc0a391a8cb2f2a11f18c18736c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![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] => {},
        _ => {}
    }
}