rust/src/test/ui/borrowck/borrowck-move-out-from-array.rs

17 lines
330 B
Rust
Raw Normal View History

#![feature(box_syntax)]
#![feature(slice_patterns)]
fn move_out_from_begin_and_end() {
let a = [box 1, box 2];
let [_, _x] = a;
let [.., _y] = a; //~ ERROR [E0382]
}
fn move_out_by_const_index_and_subslice() {
let a = [box 1, box 2];
let [_x, _] = a;
2019-07-08 01:47:46 +02:00
let [_y @ ..] = a; //~ ERROR [E0382]
}
fn main() {}