2022-05-31 13:34:04 -05:00
|
|
|
error[E0505]: cannot move out of `v` because it is borrowed
|
|
|
|
--> $DIR/issue-97381.rs:26:14
|
|
|
|
|
|
2023-01-14 21:06:44 -06:00
|
|
|
LL | let v = [1, 2, 3]
|
|
|
|
| - binding `v` declared here
|
|
|
|
...
|
2022-05-31 13:34:04 -05:00
|
|
|
LL | let el = &v[0];
|
|
|
|
| - borrow of `v` occurs here
|
2022-06-08 13:07:59 -05:00
|
|
|
LL |
|
2022-05-31 13:34:04 -05:00
|
|
|
LL | for _ in v {
|
|
|
|
| ^ move out of `v` occurs here
|
|
|
|
LL |
|
|
|
|
LL | println!("{}", ***el > 0);
|
|
|
|
| ---- borrow later used here
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0505`.
|