mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
19 lines
407 B
Rust
19 lines
407 B
Rust
// Tests that two closures cannot simultaneously have mutable
|
|
// and immutable access to the variable. Issue #6801.
|
|
|
|
fn set(x: &mut isize) {
|
|
*x = 4;
|
|
}
|
|
|
|
fn a(x: &isize) {
|
|
let mut c1 = || set(&mut *x);
|
|
//~^ ERROR cannot borrow
|
|
let mut c2 = || set(&mut *x);
|
|
//~^ ERROR cannot borrow
|
|
//~| ERROR two closures require unique access to `x` at the same time
|
|
c2(); c1();
|
|
}
|
|
|
|
fn main() {
|
|
}
|