mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 07:47:44 +00:00
10 lines
206 B
Rust
10 lines
206 B
Rust
//@ run-rustfix
|
|
|
|
#![deny(unused_mut)]
|
|
#![allow(unused_variables)] // for rustfix
|
|
|
|
fn main() {
|
|
vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
|
|
//~^ ERROR: variable does not need to be mutable
|
|
}
|