rust/src/test/ui/error-codes/E0301.stderr
2018-12-25 21:08:33 -07:00

10 lines
327 B
Plaintext

error[E0301]: cannot mutably borrow in a pattern guard
--> $DIR/E0301.rs:4:19
|
LL | option if option.take().is_none() => {}, //~ ERROR E0301
| ^^^^^^ borrowed mutably in pattern guard
error: aborting due to previous error
For more information about this error, try `rustc --explain E0301`.