]> git.lizzy.rs Git - rust.git/commitdiff
Clean up E0510 explanation
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Wed, 8 Apr 2020 13:05:52 +0000 (15:05 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Wed, 8 Apr 2020 13:05:52 +0000 (15:05 +0200)
src/librustc_error_codes/error_codes/E0510.md

index d5be417888b547ea63e236ddb209546dc1fc3aef..e045e04bdbe11ac23b981af155fbfa163c581269 100644 (file)
@@ -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!
+    }
+}
+```