2019-04-22 02:40:08 -05:00
|
|
|
error[E0596]: cannot borrow `v` as mutable, as it is not declared as mutable
|
|
|
|
--> $DIR/issue-33819.rs:4:34
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | Some(ref v) => { let a = &mut v; },
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^^^^^^
|
|
|
|
| |
|
|
|
|
| cannot borrow as mutable
|
2021-07-25 09:23:48 -05:00
|
|
|
| help: try removing `&mut` here
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|