blob: 55a2d231e19ff48922b5df0da4f85c04b735795c [file] [log] [blame]
// run-pass
#![deny(unused_mut)]
fn main() {
vec![42].iter().map(|_| ()).count();
vec![(42, 22)].iter().map(|(_x, _y)| ()).count();
}