rust/src/test/ui/pattern/bindings-after-at/default-binding-modes-both-sides-independent.rs

32 lines
1.1 KiB
Rust
Raw Normal View History

// 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)]
//~^ WARN the feature `bindings_after_at` is incomplete and may cause the compiler to crash
fn main() {
struct NotCopy;
let a @ b = &NotCopy; // OK
let _: &NotCopy = a;
let ref a @ b = &NotCopy; // OK
let _: &&NotCopy = a;
let ref a @ b = NotCopy; //~ ERROR cannot bind by-move and by-ref in the same pattern
let ref mut a @ b = NotCopy; //~ ERROR cannot bind by-move and by-ref in the same pattern
match Ok(NotCopy) {
Ok(ref a @ b) | Err(ref a @ b) => {}
//~^ ERROR cannot bind by-move and by-ref in the same pattern
}
match NotCopy {
ref a @ b => {}
//~^ ERROR cannot bind by-move and by-ref in the same pattern
}
}