]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-mutate-in-guard.stderr
Add FAQ for NLL migration
[rust.git] / src / test / ui / borrowck / borrowck-mutate-in-guard.stderr
index d12d751d89b766983824be81dbac8c8421095419..ac6bed6137fa304577dd009cb862b0e3cf908be8 100644 (file)
@@ -28,6 +28,7 @@ LL |         Enum::A(_) if { x = Enum::B(false); false } => 1,
    |
    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
+   = note: for more information, try `rustc --explain E0729`
 
 warning[E0510]: cannot mutably borrow `x` in match guard
   --> $DIR/borrowck-mutate-in-guard.rs:15:33
@@ -40,6 +41,7 @@ LL |         Enum::A(_) if { let y = &mut x; *y = Enum::B(false); false } => 1,
    |
    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
+   = note: for more information, try `rustc --explain E0729`
 
 error: aborting due to 3 previous errors