summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/eq_op_macros.rs
blob: 48240677228909655f430c1226ffcff831608ea6 (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
#![warn(clippy::eq_op)]
#![allow(clippy::useless_vec)]

// lint also in macro definition
macro_rules! assert_in_macro_def {
    () => {
        let a = 42;
        assert_eq!(a, a);
        assert_ne!(a, a);
        debug_assert_eq!(a, a);
        debug_assert_ne!(a, a);
    };
}

// lint identical args in assert-like macro invocations (see #3574)
fn main() {
    assert_in_macro_def!();

    let a = 1;
    let b = 2;

    // lint identical args in `assert_eq!`
    assert_eq!(a, a);
    assert_eq!(a + 1, a + 1);
    // ok
    assert_eq!(a, b);
    assert_eq!(a, a + 1);
    assert_eq!(a + 1, b + 1);

    // lint identical args in `assert_ne!`
    assert_ne!(a, a);
    assert_ne!(a + 1, a + 1);
    // ok
    assert_ne!(a, b);
    assert_ne!(a, a + 1);
    assert_ne!(a + 1, b + 1);

    // lint identical args in `debug_assert_eq!`
    debug_assert_eq!(a, a);
    debug_assert_eq!(a + 1, a + 1);
    // ok
    debug_assert_eq!(a, b);
    debug_assert_eq!(a, a + 1);
    debug_assert_eq!(a + 1, b + 1);

    // lint identical args in `debug_assert_ne!`
    debug_assert_ne!(a, a);
    debug_assert_ne!(a + 1, a + 1);
    // ok
    debug_assert_ne!(a, b);
    debug_assert_ne!(a, a + 1);
    debug_assert_ne!(a + 1, b + 1);

    let my_vec = vec![1; 5];
    let mut my_iter = my_vec.iter();
    assert_ne!(my_iter.next(), my_iter.next());
}