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.
- Loading branch information
1 parent
1b521f5
commit 80e3126
Showing
1 changed file
with
20 additions
and
7 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
Cannot mutate place in this match guard. | ||
The matched value was assigned in a match guard. | ||
|
||
When matching on a variable it cannot be mutated in the match guards, as this | ||
could cause the match to be non-exhaustive: | ||
Erroneous code example: | ||
|
||
```compile_fail,E0510 | ||
let mut x = Some(0); | ||
match x { | ||
None => (), | ||
Some(_) if { x = None; false } => (), | ||
Some(v) => (), // No longer matches | ||
None => {} | ||
Some(_) if { x = None; false } => {} // error! | ||
Some(_) => {} | ||
} | ||
``` | ||
|
||
When matching on a variable it cannot be mutated in the match guards, as this | ||
could cause the match to be non-exhaustive. | ||
|
||
Here executing `x = None` would modify the value being matched and require us | ||
to go "back in time" to the `None` arm. | ||
to go "back in time" to the `None` arm. To fix it, change the value in the match | ||
arm: | ||
|
||
``` | ||
let mut x = Some(0); | ||
match x { | ||
None => {} | ||
Some(_) => { | ||
x = None; // ok! | ||
} | ||
} | ||
``` |