2018-08-08 12:28:26 +00:00
|
|
|
error[E0500]: closure requires unique access to `x` but it is already borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-closures-unique.rs:26:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let c2 = || set(x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| closure construction occurs here
|
2018-08-15 21:26:59 +00:00
|
|
|
LL | c1;
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- first borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0500]: closure requires unique access to `x` but it is already borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-closures-unique.rs:32:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let c2 = || { get(x); set(x); };
|
2021-03-17 06:51:27 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| closure construction occurs here
|
2018-08-15 21:26:59 +00:00
|
|
|
LL | c1;
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- first borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0524]: two closures require unique access to `x` at the same time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/borrowck-closures-unique.rs:38:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || set(x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| first closure is constructed here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let c2 = || set(x);
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| second closure is constructed here
|
2018-08-15 21:26:59 +00:00
|
|
|
LL | c1;
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- first borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0594]: cannot assign to `x`, as it is not declared as mutable
|
|
|
|
--> $DIR/borrowck-closures-unique.rs:43:38
|
2018-08-15 21:26:59 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | fn e(x: &'static mut isize) {
|
|
|
|
| - help: consider changing this to be mutable: `mut x`
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let c1 = |y: &'static mut isize| x = y;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^^ cannot assign
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-11-06 12:58:44 +00:00
|
|
|
Some errors have detailed explanations: E0500, E0524, E0594.
|
2019-09-13 13:14:53 +00:00
|
|
|
For more information about an error, try `rustc --explain E0500`.
|