rust/tests/ui/span/regions-escape-loop-via-vec.stderr

50 lines
1.6 KiB
Plaintext
Raw Normal View History

error[E0503]: cannot use `x` because it was mutably borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/regions-escape-loop-via-vec.rs:5:11
|
2018-02-22 18:42:32 -06:00
LL | let mut _y = vec![&mut x];
2023-01-14 21:06:44 -06:00
| ------ `x` is borrowed here
2019-03-09 06:03:44 -06:00
LL | while x < 10 {
| ^ use of borrowed `x`
LL | let mut z = x;
LL | _y.push(&mut z);
2021-09-16 15:01:22 -05:00
| --------------- borrow later used here
error[E0503]: cannot use `x` because it was mutably borrowed
--> $DIR/regions-escape-loop-via-vec.rs:6:21
|
2018-02-22 18:42:32 -06:00
LL | let mut _y = vec![&mut x];
2023-01-14 21:06:44 -06:00
| ------ `x` is borrowed here
2019-03-09 06:03:44 -06:00
LL | while x < 10 {
LL | let mut z = x;
| ^ use of borrowed `x`
LL | _y.push(&mut z);
2021-09-16 15:01:22 -05:00
| --------------- borrow later used here
error[E0597]: `z` does not live long enough
--> $DIR/regions-escape-loop-via-vec.rs:7:17
|
2023-01-14 21:06:44 -06:00
LL | let mut z = x;
| ----- binding `z` declared here
LL | _y.push(&mut z);
2023-01-14 21:06:44 -06:00
| ^^^^^^ borrowed value does not live long enough
...
LL | }
| - `z` dropped here while still borrowed
error[E0503]: cannot use `x` because it was mutably borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/regions-escape-loop-via-vec.rs:9:9
|
2018-02-22 18:42:32 -06:00
LL | let mut _y = vec![&mut x];
2023-01-14 21:06:44 -06:00
| ------ `x` is borrowed here
...
LL | _y.push(&mut z);
2021-09-16 15:01:22 -05:00
| --------------- borrow later used here
LL |
2019-03-09 06:03:44 -06:00
LL | x += 1;
| ^^^^^^ use of borrowed `x`
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0503, E0597.
2018-03-03 08:59:40 -06:00
For more information about an error, try `rustc --explain E0503`.