blob: daf530e6d0b6eeca0e12987dcbee5c8356c295e6 [file] [log] [blame] [edit]
#![deny(map_unit_fn)]
#![crate_type = "lib"]
fn _y() {
vec![42].iter().map(drop);
//~^ ERROR `Iterator::map` call that discard the iterator's values
}