mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
17 lines
356 B
Plaintext
17 lines
356 B
Plaintext
error: variable does not need to be mutable
|
|
--> $DIR/capture-mut-ref.rs:9:9
|
|
|
|
|
LL | let mut x = &mut 0;
|
|
| ----^
|
|
| |
|
|
| help: remove this `mut`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/capture-mut-ref.rs:6:9
|
|
|
|
|
LL | #![deny(unused_mut)]
|
|
| ^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|