2018-08-08 12:28:26 +00:00
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:17:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || x = 4;
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | let c2 = || x * 5;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
2018-09-29 10:47:47 +00:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:25:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || set(&mut x);
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | let c2 = || get(&x);
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
2018-09-29 10:47:47 +00:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:33:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || set(&mut x);
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | let c2 = || x * 5;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
2018-09-29 10:47:47 +00:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:41:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c2 = || x * 5;
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `x` is borrowed here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | x = 5;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c2);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:49:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&x);
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `x` is borrowed here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | x = 5;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:57:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x);
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- -- borrow occurs due to use in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `*x` is borrowed here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | *x = 5;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^ `*x` is assigned to here but it was already borrowed
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x.f` because it is borrowed
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:69:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x.f);
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- ---- borrow occurs due to use in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `*x.f` is borrowed here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | *x.f = 5;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^^^ `*x.f` is assigned to here but it was already borrowed
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:81:14
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x.f);
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- ---- first borrow occurs due to use of `x` in closure
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | let c2 = || *x.f = 5;
|
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
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 09:52:07 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | drop(c1);
|
2018-09-29 10:47:47 +00:00
|
|
|
| -- immutable borrow later used here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0502, E0506.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0502`.
|