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