2019-11-11 04:39:52 -06:00
|
|
|
// Ensures the independence of each side in `binding @ subpat`
|
|
|
|
// determine their binding modes independently of each other.
|
|
|
|
//
|
|
|
|
// That is, `binding` does not influence `subpat`.
|
|
|
|
// This is important because we might want to allow `p1 @ p2`,
|
|
|
|
// where both `p1` and `p2` are syntactically unrestricted patterns.
|
|
|
|
// If `binding` is allowed to influence `subpat`,
|
|
|
|
// this would create problems for the generalization aforementioned.
|
|
|
|
|
|
|
|
#![feature(bindings_after_at)]
|
2020-01-18 19:47:01 -06:00
|
|
|
#![feature(move_ref_pattern)]
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
struct NotCopy;
|
|
|
|
|
2019-12-14 20:50:55 -06:00
|
|
|
fn f1(a @ b: &NotCopy) { // OK
|
|
|
|
let _: &NotCopy = a;
|
|
|
|
}
|
|
|
|
fn f2(ref a @ b: &NotCopy) {
|
|
|
|
let _: &&NotCopy = a; // Ok
|
|
|
|
}
|
|
|
|
|
2019-11-11 04:39:52 -06:00
|
|
|
let a @ b = &NotCopy; // OK
|
|
|
|
let _: &NotCopy = a;
|
|
|
|
let ref a @ b = &NotCopy; // OK
|
|
|
|
let _: &&NotCopy = a;
|
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
let ref a @ b = NotCopy; //~ ERROR cannot move out of value because it is borrowed
|
2020-01-18 19:47:01 -06:00
|
|
|
let _a: &NotCopy = a;
|
|
|
|
let _b: NotCopy = b;
|
2020-02-02 10:58:15 -06:00
|
|
|
let ref mut a @ b = NotCopy; //~ ERROR cannot move out of value because it is borrowed
|
2020-01-18 19:47:01 -06:00
|
|
|
//~^ ERROR cannot move out of `_` because it is borrowed
|
|
|
|
let _a: &NotCopy = a;
|
|
|
|
let _b: NotCopy = b;
|
2019-11-11 04:39:52 -06:00
|
|
|
match Ok(NotCopy) {
|
2020-01-18 19:47:01 -06:00
|
|
|
Ok(ref a @ b) | Err(b @ ref a) => {
|
2020-02-02 10:58:15 -06:00
|
|
|
//~^ ERROR cannot move out of value because it is borrowed
|
|
|
|
//~| ERROR borrow of moved value
|
2020-01-18 19:47:01 -06:00
|
|
|
let _a: &NotCopy = a;
|
|
|
|
let _b: NotCopy = b;
|
|
|
|
}
|
2019-11-11 04:39:52 -06:00
|
|
|
}
|
|
|
|
match NotCopy {
|
2020-01-18 19:47:01 -06:00
|
|
|
ref a @ b => {
|
2020-02-02 10:58:15 -06:00
|
|
|
//~^ ERROR cannot move out of value because it is borrowed
|
2020-01-18 19:47:01 -06:00
|
|
|
let _a: &NotCopy = a;
|
|
|
|
let _b: NotCopy = b;
|
|
|
|
}
|
2019-11-11 04:39:52 -06:00
|
|
|
}
|
|
|
|
}
|