summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/for_loops_over_fallibles.rs
blob: 3390111d0a8fe19e758914ab51f27ab31b81e407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#![warn(clippy::for_loops_over_fallibles)]

fn for_loops_over_fallibles() {
    let option = Some(1);
    let mut result = option.ok_or("x not found");
    let v = vec![0, 1, 2];

    // check over an `Option`
    for x in option {
        println!("{}", x);
    }

    // check over an `Option`
    for x in option.iter() {
        println!("{}", x);
    }

    // check over a `Result`
    for x in result {
        println!("{}", x);
    }

    // check over a `Result`
    for x in result.iter_mut() {
        println!("{}", x);
    }

    // check over a `Result`
    for x in result.into_iter() {
        println!("{}", x);
    }

    for x in option.ok_or("x not found") {
        println!("{}", x);
    }

    // make sure LOOP_OVER_NEXT lint takes clippy::precedence when next() is the last call
    // in the chain
    for x in v.iter().next() {
        println!("{}", x);
    }

    // make sure we lint when next() is not the last call in the chain
    for x in v.iter().next().and(Some(0)) {
        println!("{}", x);
    }

    for x in v.iter().next().ok_or("x not found") {
        println!("{}", x);
    }

    // check for false positives

    // for loop false positive
    for x in v {
        println!("{}", x);
    }

    // while let false positive for Option
    while let Some(x) = option {
        println!("{}", x);
        break;
    }

    // while let false positive for Result
    while let Ok(x) = result {
        println!("{}", x);
        break;
    }
}

fn main() {}