2019-04-22 02:40:08 -05:00
|
|
|
error[E0596]: cannot borrow `key` as mutable, as it is not declared as mutable
|
|
|
|
--> $DIR/issue-34337.rs:6:9
|
2016-11-02 01:15:02 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | get(&mut key);
|
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
|
2016-11-02 01:15:02 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2016-11-02 01:15:02 -05:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0596`.
|