rust/src/test/ui/nll/unused-mut-issue-50343.stderr

17 lines
467 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-issue-50343.rs:5:33
2018-08-08 07:28:26 -05:00
|
LL | vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
| ----^
| |
| help: remove this `mut`
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/unused-mut-issue-50343.rs:2:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused_mut)]
| ^^^^^^^^^^
error: aborting due to previous error