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

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

10 lines
202 B
Rust
Raw Normal View History

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