2018-08-01 19:40:06 +00:00
|
|
|
error[E0505]: cannot move out of `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:5:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x.len();
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
|
|
|
| borrow of `x` occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^ move out of `x` occurs here
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:11:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x;
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| immutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = &mut x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^^^^^^ mutable borrow occurs here
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - immutable borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0597]: `x` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:19:16
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | f = || x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| -- ^ borrowed value does not live long enough
|
|
|
|
| |
|
|
|
|
| value captured here
|
|
|
|
LL | }
|
|
|
|
| - `x` dropped here while still borrowed
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:26:5
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x;
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `x` is borrowed here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x = 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2018-08-01 19:40:06 +00:00
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0503]: cannot use `x` because it was mutably borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:32:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x = 0;
|
|
|
|
| -- - borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `x` is borrowed here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^ use of borrowed `x`
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:38:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x = 0;
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = &x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^^ immutable borrow occurs here
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - mutable borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0499]: cannot borrow `x` as mutable more than once at a time
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:44:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x = 0;
|
|
|
|
| -- - first borrow occurs due to use of `x` in closure
|
|
|
|
| |
|
|
|
|
| first mutable borrow occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = &mut x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^^^^^^ second mutable borrow occurs here
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - first borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0597]: `x` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:52:16
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | f = || x = 0;
|
2018-08-01 19:40:06 +00:00
|
|
|
| -- ^ borrowed value does not live long enough
|
|
|
|
| |
|
|
|
|
| value captured here
|
|
|
|
LL | }
|
|
|
|
| - `x` dropped here while still borrowed
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:59:5
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || x = 0;
|
|
|
|
| -- - borrow occurs due to use in closure
|
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `x` is borrowed here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x = 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^ `x` is assigned to here but it was already borrowed
|
2018-08-01 19:40:06 +00:00
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:65:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || *x = 0;
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- -- borrow occurs due to use in closure
|
2018-08-01 19:40:06 +00:00
|
|
|
| |
|
|
|
|
| borrow of `x` occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = x;
|
2018-08-01 19:40:06 +00:00
|
|
|
| ^ move out of `x` occurs here
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:71:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || *x = 0;
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- -- first borrow occurs due to use of `x` in closure
|
2018-08-01 19:40:06 +00:00
|
|
|
| |
|
|
|
|
| closure construction occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = &x;
|
2018-11-30 13:55:51 +00:00
|
|
|
| ^^ second borrow occurs here
|
2018-08-01 19:40:06 +00:00
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - first borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0501]: cannot borrow `x` as mutable because previous closure requires unique access
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:77:13
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || *x = 0;
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- -- first borrow occurs due to use of `x` in closure
|
2018-08-01 19:40:06 +00:00
|
|
|
| |
|
|
|
|
| closure construction occurs here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let y = &mut x;
|
2018-11-30 13:55:51 +00:00
|
|
|
| ^^^^^^ second borrow occurs here
|
2018-08-01 19:40:06 +00:00
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - first borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0597]: `x` does not live long enough
|
2021-03-17 06:51:27 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:86:16
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | f = || *x = 0;
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- ^^ borrowed value does not live long enough
|
2018-08-01 19:40:06 +00:00
|
|
|
| |
|
|
|
|
| value captured here
|
|
|
|
LL | }
|
|
|
|
| - `x` dropped here while still borrowed
|
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error[E0506]: cannot assign to `*x` because it is borrowed
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/closure-borrow-spans.rs:93:5
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
|
LL | let f = || *x = 0;
|
2021-03-17 06:51:27 +00:00
|
|
|
| -- -- borrow occurs due to use in closure
|
2018-08-01 19:40:06 +00:00
|
|
|
| |
|
2023-01-15 03:06:44 +00:00
|
|
|
| `*x` is borrowed here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | *x = 1;
|
2023-01-15 03:06:44 +00:00
|
|
|
| ^^^^^^ `*x` is assigned to here but it was already borrowed
|
2018-08-01 19:40:06 +00:00
|
|
|
LL | f.use_ref();
|
2023-06-22 20:30:23 +00:00
|
|
|
| - borrow later used here
|
2018-08-01 19:40:06 +00:00
|
|
|
|
|
|
|
error: aborting due to 14 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0499, E0501, E0502, E0503, E0505, E0506, E0597.
|
2018-08-01 19:40:06 +00:00
|
|
|
For more information about an error, try `rustc --explain E0499`.
|