blob: 898c30a75b28d9e2ebd7d5b243cff3c0b52a5f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|
= help: add #![feature(bind_by_move_pattern_guards)] to the crate attributes to enable
error: aborting due to previous error
For more information about this error, try `rustc --explain E0301`.
|