8 lines
163 B
Rust
8 lines
163 B
Rust
#![feature(nll)]
|
|
#![deny(unused_mut)]
|
|
|
|
fn main() {
|
|
vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
|
|
//~^ ERROR: variable does not need to be mutable
|
|
}
|