rust/tests/ui/nll/unused-mut-issue-50343.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
206 B
Rust
Raw Normal View History

2020-07-02 13:32:12 +08:00
//@ run-rustfix
#![deny(unused_mut)]
2020-07-02 13:32:12 +08:00
#![allow(unused_variables)] // for rustfix
fn main() {
vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
//~^ ERROR: variable does not need to be mutable
}