mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
201 B
Rust
10 lines
201 B
Rust
// 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
|
|
}
|