rust/src/test/ui/unused/unused-mut-warning-captured-var.stderr
2020-01-24 16:24:50 +00:00

17 lines
386 B
Plaintext

error: variable does not need to be mutable
--> $DIR/unused-mut-warning-captured-var.rs:4:9
|
LL | let mut x = 1;
| ----^
| |
| help: remove this `mut`
|
note: the lint level is defined here
--> $DIR/unused-mut-warning-captured-var.rs:1:11
|
LL | #![forbid(unused_mut)]
| ^^^^^^^^^^
error: aborting due to previous error