2018-11-05 08:24:25 -06:00
|
|
|
error[E0524]: two closures require unique access to `x` at the same time
|
|
|
|
--> $DIR/borrowck-closures-mut-of-mut.rs:14:18
|
|
|
|
|
|
|
|
|
LL | let mut c1 = || set(&mut *x);
|
2021-03-17 01:51:27 -05:00
|
|
|
| -- -- first borrow occurs due to use of `x` in closure
|
2018-11-05 08:24:25 -06:00
|
|
|
| |
|
|
|
|
| first closure is constructed here
|
|
|
|
LL | let mut c2 = || set(&mut *x);
|
2021-03-17 01:51:27 -05:00
|
|
|
| ^^ -- second borrow occurs due to use of `x` in closure
|
2018-11-05 08:24:25 -06:00
|
|
|
| |
|
|
|
|
| second closure is constructed here
|
2019-04-22 02:40:08 -05:00
|
|
|
LL |
|
|
|
|
LL | c2(); c1();
|
|
|
|
| -- first borrow later used here
|
2018-11-05 08:24:25 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-09-13 08:14:53 -05:00
|
|
|
For more information about this error, try `rustc --explain E0524`.
|