rust/src/test/ui/pattern/bindings-after-at/borrowck-move-and-move.rs

47 lines
1.2 KiB
Rust
Raw Normal View History

// Test that moving on both sides of an `@` pattern is not allowed.
#![feature(bindings_after_at)]
fn main() {
struct U; // Not copy!
// Prevent promotion:
fn u() -> U { U }
let a @ b = U;
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
let a @ (b, c) = (U, U);
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
let a @ (b, c) = (u(), u());
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
match Ok(U) {
a @ Ok(b) | a @ Err(b) => {}
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
//~| ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
}
fn fun(a @ b: U) {}
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
match [u(), u(), u(), u()] {
xs @ [a, .., b] => {}
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
}
match [u(), u(), u(), u()] {
xs @ [_, ys @ .., _] => {}
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR use of moved value
}
}