2018-07-03 14:12:09 -05:00
|
|
|
error: variable does not need to be mutable
|
2020-07-02 00:32:12 -05:00
|
|
|
--> $DIR/capture-mut-ref.rs:9:9
|
2018-07-03 14:12:09 -05:00
|
|
|
|
|
|
|
|
LL | let mut x = &mut 0;
|
|
|
|
| ----^
|
|
|
|
| |
|
|
|
|
| help: remove this `mut`
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2020-07-02 00:32:12 -05:00
|
|
|
--> $DIR/capture-mut-ref.rs:6:9
|
2018-07-03 14:12:09 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(unused_mut)]
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-03 14:12:09 -05:00
|
|
|
|