summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-109152.rs
blob: daf530e6d0b6eeca0e12987dcbee5c8356c295e6 (plain)
1
2
3
4
5
6
7
#![deny(map_unit_fn)]

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