2018-08-08 07:28:26 -05:00
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:21:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || x = 4;
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | let c2 = || x * 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
2018-09-29 05:47:47 -05:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:29:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || set(&mut x);
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | let c2 = || get(&x);
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
2018-09-29 05:47:47 -05:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:37:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || set(&mut x);
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | let c2 = || x * 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
2018-09-29 05:47:47 -05:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:45:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c2 = || x * 5;
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| borrow of `x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | x = 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^ assignment to borrowed `x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c2);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:53:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&x);
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| borrow of `x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | x = 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^ assignment to borrowed `x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:61:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x);
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| borrow of `*x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | *x = 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^ assignment to borrowed `*x` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x.f` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:73:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x.f);
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| borrow of `*x.f` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | *x.f = 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^ assignment to borrowed `*x.f` occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
|
|
|
| -- borrow later used here
|
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/borrowck-closures-mut-and-imm.rs:85:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let c1 = || get(&*x.f);
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | let c2 = || *x.f = 5;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^ - second borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL |
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | drop(c1);
|
2018-09-29 05:47:47 -05:00
|
|
|
| -- immutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0502, E0506.
|
|
|
|
For more information about an error, try `rustc --explain E0502`.
|