2017-05-27 17:58:52 +00:00
|
|
|
error[E0597]: `z` does not live long enough
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/regions-escape-loop-via-vec.rs:7:22
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | _y.push(&mut z);
|
2017-12-14 17:57:34 +00:00
|
|
|
| ^ borrowed value does not live long enough
|
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2017-12-14 17:57:34 +00:00
|
|
|
| - `z` dropped here while still borrowed
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | }
|
2016-10-26 16:10:39 +00:00
|
|
|
| - borrowed value needs to live until here
|
|
|
|
|
|
|
|
error[E0503]: cannot use `x` because it was mutably borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/regions-escape-loop-via-vec.rs:5:11
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let mut _y = vec![&mut x];
|
2016-10-26 16:10:39 +00:00
|
|
|
| - borrow of `x` occurs here
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | while x < 10 { //~ ERROR cannot use `x` because it was mutably borrowed
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^ use of borrowed `x`
|
|
|
|
|
|
|
|
error[E0503]: cannot use `x` because it was mutably borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/regions-escape-loop-via-vec.rs:6:13
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let mut _y = vec![&mut x];
|
2016-10-26 16:10:39 +00:00
|
|
|
| - borrow of `x` occurs here
|
2018-02-24 23:01:39 +00:00
|
|
|
LL | while x < 10 { //~ ERROR cannot use `x` because it was mutably borrowed
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let mut z = x; //~ ERROR cannot use `x` because it was mutably borrowed
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^^^^^ use of borrowed `x`
|
|
|
|
|
|
|
|
error[E0506]: cannot assign to `x` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/regions-escape-loop-via-vec.rs:9:9
|
2016-10-26 16:10:39 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let mut _y = vec![&mut x];
|
2016-10-26 16:10:39 +00:00
|
|
|
| - borrow of `x` occurs here
|
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | x += 1; //~ ERROR cannot assign
|
2016-10-26 16:10:39 +00:00
|
|
|
| ^^^^^^ assignment to borrowed `x` occurs here
|
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2016-10-26 16:10:39 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
Some errors occurred: E0503, E0506, E0597.
|
|
|
|
For more information about an error, try `rustc --explain E0503`.
|