-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When moving out of a for loop head, suggest borrowing it
When encountering code like the following, suggest borrowing the for loop head to avoid moving it into the for loop pattern: ``` fn main() { let a = vec![1, 2, 3]; for i in &a { for j in a { println!("{} * {} = {}", i, j, i * j); } } } ```
- Loading branch information
Showing
4 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
fn main() { | ||
let a = vec![1, 2, 3]; | ||
for i in &a { | ||
for j in a { | ||
//~^ ERROR cannot move out of `a` because it is borrowed | ||
//~| ERROR use of moved value: `a` | ||
println!("{} * {} = {}", i, j, i * j); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
error[E0505]: cannot move out of `a` because it is borrowed | ||
--> $DIR/borrow-for-loop-head.rs:4:18 | ||
| | ||
LL | for i in &a { | ||
| - borrow of `a` occurs here | ||
LL | for j in a { | ||
| ^ move out of `a` occurs here | ||
|
||
error[E0382]: use of moved value: `a` | ||
--> $DIR/borrow-for-loop-head.rs:4:18 | ||
| | ||
LL | for j in a { | ||
| ^ value moved here in previous iteration of loop | ||
| | ||
= note: move occurs because `a` has type `std::vec::Vec<i32>`, which does not implement the `Copy` trait | ||
help: consider borrowing this to avoid moving it into the for loop | ||
| | ||
LL | for j in &a { | ||
| ^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors occurred: E0382, E0505. | ||
For more information about an error, try `rustc --explain E0382`. |