forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#80941 - JohnTitor:ref-mut-pat-in-loops, r=v…
…arkor Do not suggest invalid code in pattern with loop Fixes rust-lang#80913
- Loading branch information
Showing
3 changed files
with
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Regression test for #80913. | ||
|
||
fn main() { | ||
let mut x = 42_i32; | ||
let mut opt = Some(&mut x); | ||
for _ in 0..5 { | ||
if let Some(mut _x) = opt {} | ||
//~^ ERROR: use of moved value | ||
} | ||
} |
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,15 @@ | ||
error[E0382]: use of moved value | ||
--> $DIR/move-in-pattern-mut-in-loop.rs:7:21 | ||
| | ||
LL | if let Some(mut _x) = opt {} | ||
| ^^^^^^ value moved here, in previous iteration of loop | ||
| | ||
= note: move occurs because value has type `&mut i32`, which does not implement the `Copy` trait | ||
help: borrow this field in the pattern to avoid moving `opt.0` | ||
| | ||
LL | if let Some(ref mut _x) = opt {} | ||
| ^^^ | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0382`. |