1 2 3 4 5 6 7 8
// run-pass #![deny(unused_mut)] fn main() { vec![42].iter().map(drop).count(); vec![(42, 22)].iter().map(|(_x, _y)| ()).count(); }