summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/map_collect_result_unit.rs
blob: 6f08f4c3c53549c76e449f7947666ac48abbc6bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-rustfix
#![warn(clippy::map_collect_result_unit)]

fn main() {
    {
        let _ = (0..3).map(|t| Err(t + 1)).collect::<Result<(), _>>();
        let _: Result<(), _> = (0..3).map(|t| Err(t + 1)).collect();

        let _ = (0..3).try_for_each(|t| Err(t + 1));
    }
}

fn _ignore() {
    let _ = (0..3).map(|t| Err(t + 1)).collect::<Result<Vec<i32>, _>>();
    let _ = (0..3).map(|t| Err(t + 1)).collect::<Vec<Result<(), _>>>();
}