rust/src/test/ui/nll/closure-borrow-spans.stderr

173 lines
5.5 KiB
Plaintext
Raw Normal View History

2018-08-01 19:40:06 +00:00
error[E0505]: cannot move out of `x` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:7: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();
| - borrow later used here
error[E0502]: cannot borrow `x` as mutable because it is also borrowed as immutable
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:13: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();
| - immutable borrow later used here
2018-08-01 19:40:06 +00:00
error[E0597]: `x` does not live long enough
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:21: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();
| - borrow later used here
error[E0506]: cannot assign to `x` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:28:5
2018-08-01 19:40:06 +00:00
|
LL | let f = || x;
| -- - borrow occurs due to use in closure
| |
| borrow of `x` occurs here
2019-03-09 12:03:44 +00:00
LL | x = 1;
2018-08-01 19:40:06 +00:00
| ^^^^^ assignment to borrowed `x` occurs here
LL | f.use_ref();
| - borrow later used here
error[E0503]: cannot use `x` because it was mutably borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:34:13
2018-08-01 19:40:06 +00:00
|
LL | let f = || x = 0;
| -- - borrow occurs due to use of `x` 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
| ^ use of borrowed `x`
LL | f.use_ref();
| - borrow later used here
error[E0502]: cannot borrow `x` as immutable because it is also borrowed as mutable
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:40: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();
| - 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
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:46: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();
| - first borrow later used here
2018-08-01 19:40:06 +00:00
error[E0597]: `x` does not live long enough
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:54: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();
| - borrow later used here
error[E0506]: cannot assign to `x` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:61:5
2018-08-01 19:40:06 +00:00
|
LL | let f = || x = 0;
| -- - borrow occurs due to use in closure
| |
| borrow of `x` occurs here
2019-03-09 12:03:44 +00:00
LL | x = 1;
2018-08-01 19:40:06 +00:00
| ^^^^^ assignment to borrowed `x` occurs here
LL | f.use_ref();
| - borrow later used here
error[E0505]: cannot move out of `x` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:67:13
2018-08-01 19:40:06 +00:00
|
LL | let f = || *x = 0;
| -- - 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();
| - borrow later used here
error[E0501]: cannot borrow `x` as immutable because previous closure requires unique access
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:73:13
2018-08-01 19:40:06 +00:00
|
LL | let f = || *x = 0;
| -- - first borrow occurs due to use of `x` in closure
| |
| closure construction occurs here
2019-03-09 12:03:44 +00:00
LL | let y = &x;
| ^^ second borrow occurs here
2018-08-01 19:40:06 +00:00
LL | f.use_ref();
| - 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
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:79:13
2018-08-01 19:40:06 +00:00
|
LL | let f = || *x = 0;
| -- - first borrow occurs due to use of `x` in closure
| |
| closure construction occurs here
2019-03-09 12:03:44 +00:00
LL | let y = &mut x;
| ^^^^^^ second borrow occurs here
2018-08-01 19:40:06 +00:00
LL | f.use_ref();
| - first borrow later used here
2018-08-01 19:40:06 +00:00
error[E0597]: `x` does not live long enough
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:88:17
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();
| - borrow later used here
error[E0506]: cannot assign to `*x` because it is borrowed
2018-12-25 15:56:47 +00:00
--> $DIR/closure-borrow-spans.rs:95:5
2018-08-01 19:40:06 +00:00
|
LL | let f = || *x = 0;
| -- - borrow occurs due to use in closure
| |
| borrow of `*x` occurs here
2019-03-09 12:03:44 +00:00
LL | *x = 1;
2018-08-01 19:40:06 +00:00
| ^^^^^^ assignment to borrowed `*x` occurs here
LL | f.use_ref();
| - borrow later used here
error: aborting due to 14 previous errors
Some errors occurred: E0499, E0501, E0502, E0503, E0505, E0506, E0597.
For more information about an error, try `rustc --explain E0499`.