rust/src/test/ui/unused/unused-mut-warning-captured-var.stderr

17 lines
379 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: variable does not need to be mutable
2018-12-25 09:56:47 -06:00
--> $DIR/unused-mut-warning-captured-var.rs:4:9
2018-08-08 07:28:26 -05:00
|
LL | let mut x = 1;
| ----^
| |
| help: remove this `mut`
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/unused-mut-warning-captured-var.rs:1:11
2018-08-08 07:28:26 -05:00
|
LL | #![forbid(unused_mut)]
| ^^^^^^^^^^
error: aborting due to previous error