1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
// Check that closure captures for slice patterns are inferred correctly
fn arr_by_ref(mut x: [String; 3]) {
let f = || {
let [ref y, ref z @ ..] = x;
};
let r = &mut x;
//~^ ERROR cannot borrow
f();
}
fn arr_by_mut(mut x: [String; 3]) {
let mut f = || {
let [ref mut y, ref mut z @ ..] = x;
};
let r = &x;
//~^ ERROR cannot borrow
f();
}
fn arr_by_move(x: [String; 3]) {
let f = || {
let [y, z @ ..] = x;
};
&x;
//~^ ERROR borrow of moved value
}
fn arr_ref_by_ref(x: &mut [String; 3]) {
let f = || {
let [ref y, ref z @ ..] = *x;
};
let r = &mut *x;
//~^ ERROR cannot borrow
f();
}
fn arr_ref_by_uniq(x: &mut [String; 3]) {
let mut f = || {
let [ref mut y, ref mut z @ ..] = *x;
};
let r = &x;
//~^ ERROR cannot borrow
f();
}
fn arr_box_by_move(x: Box<[String; 3]>) {
let f = || {
let [y, z @ ..] = *x;
};
&x;
//~^ ERROR borrow of moved value
}
fn slice_by_ref(x: &mut [String]) {
let f = || {
if let [ref y, ref z @ ..] = *x {}
};
let r = &mut *x;
//~^ ERROR cannot borrow
f();
}
fn slice_by_uniq(x: &mut [String]) {
let mut f = || {
if let [ref mut y, ref mut z @ ..] = *x {}
};
let r = &x;
//~^ ERROR cannot borrow
f();
}
fn main() {
arr_by_ref(Default::default());
arr_by_mut(Default::default());
arr_by_move(Default::default());
arr_ref_by_ref(&mut Default::default());
arr_ref_by_uniq(&mut Default::default());
arr_box_by_move(Default::default());
slice_by_ref(&mut <[_; 3]>::default());
slice_by_uniq(&mut <[_; 3]>::default());
}
|