rust/src/test/ui/pattern/bindings-after-at/borrowck-pat-ref-mut-twice.rs

112 lines
3.8 KiB
Rust
Raw Normal View History

// Test that `ref mut x @ ref mut y` and varieties of that are not allowed.
#![feature(bindings_after_at)]
fn main() {
struct U;
fn u() -> U { U }
fn f1(ref mut a @ ref mut b: U) {}
//~^ ERROR cannot borrow `a` as mutable more than once at a time
fn f2(ref mut a @ ref mut b: U) {}
//~^ ERROR cannot borrow `a` as mutable more than once at a time
fn f3(
ref mut a @ [
//~^ ERROR cannot borrow `a` as mutable more than once at a time
[ref b @ .., _],
[_, ref mut mid @ ..],
..,
[..],
] : [[U; 4]; 5]
) {}
let ref mut a @ ref mut b = U;
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
drop(a);
2019-12-14 17:32:20 -06:00
let ref mut a @ ref mut b = U;
//~^ ERROR cannot borrow `a` as mutable more than once at a time
drop(b);
2019-12-14 17:32:20 -06:00
let ref mut a @ ref mut b = U;
//~^ ERROR cannot borrow `a` as mutable more than once at a time
let ref mut a @ ref mut b = U;
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
*a = U;
2019-12-14 17:32:20 -06:00
let ref mut a @ ref mut b = U;
//~^ ERROR cannot borrow `a` as mutable more than once at a time
*b = U;
2019-12-14 17:32:20 -06:00
let ref mut a @ (
//~^ ERROR cannot borrow `a` as mutable more than once at a time
ref mut b,
[
ref mut c,
ref mut d,
ref e,
]
) = (U, [U, U, U]);
let ref mut a @ (
//~^ ERROR cannot borrow `a` as mutable more than once at a time
ref mut b,
[
ref mut c,
ref mut d,
ref e,
]
) = (u(), [u(), u(), u()]);
let a @ (ref mut b, ref mut c) = (U, U);
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR borrow of moved value
let mut val = (U, [U, U]);
let a @ (b, [c, d]) = &mut val; // Same as ^--
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR borrow of moved value
let a @ &mut ref mut b = &mut U;
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR borrow of moved value
let a @ &mut (ref mut b, ref mut c) = &mut (U, U);
//~^ ERROR cannot bind by-move with sub-bindings
//~| ERROR borrow of moved value
match Ok(U) {
ref mut a @ Ok(ref mut b) | ref mut a @ Err(ref mut b) => {
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `a` as mutable more than once at a time
}
}
match Ok(U) {
ref mut a @ Ok(ref mut b) | ref mut a @ Err(ref mut b) => {
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `a` as mutable more than once at a time
*b = U;
}
}
match Ok(U) {
ref mut a @ Ok(ref mut b) | ref mut a @ Err(ref mut b) => {
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
*a = Err(U);
// FIXME: The binding name `_` used above makes for problematic diagnostics.
// Resolve that somehow...
}
}
match Ok(U) {
ref mut a @ Ok(ref mut b) | ref mut a @ Err(ref mut b) => {
2019-12-14 17:32:20 -06:00
//~^ ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `a` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
//~| ERROR cannot borrow `_` as mutable more than once at a time
drop(a);
}
}
}