2018-07-15 16:11:54 -05:00
|
|
|
error[E0596]: cannot borrow immutable local variable `v` as mutable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-33819.rs:4:39
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | Some(ref v) => { let a = &mut v; },
|
|
|
|
| ^ cannot borrow mutably
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0596`.
|