mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
705 B
Text
20 lines
705 B
Text
error[E0505]: cannot move out of `a` because it is borrowed
|
|
--> $DIR/drop-with-active-borrows-1.rs:4:10
|
|
|
|
|
LL | let a = "".to_string();
|
|
| - binding `a` declared here
|
|
LL | let b: Vec<&str> = a.lines().collect();
|
|
| - borrow of `a` occurs here
|
|
LL | drop(a);
|
|
| ^ move out of `a` occurs here
|
|
LL | for s in &b {
|
|
| -- borrow later used here
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
LL | let b: Vec<&str> = a.clone().lines().collect();
|
|
| ++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0505`.
|