summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/redundant_pattern_matching_drop_order.rs
blob: 29b8543cf473a92241c7db8a2586922f966452a6 (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
// run-rustfix

// Issue #5746
#![warn(clippy::redundant_pattern_matching)]
#![allow(clippy::if_same_then_else, clippy::equatable_if_let)]
use std::task::Poll::{Pending, Ready};

fn main() {
    let m = std::sync::Mutex::new((0, 0));

    // Result
    if let Ok(_) = m.lock() {}
    if let Err(_) = Err::<(), _>(m.lock().unwrap().0) {}

    {
        if let Ok(_) = Ok::<_, std::sync::MutexGuard<()>>(()) {}
    }
    if let Ok(_) = Ok::<_, std::sync::MutexGuard<()>>(()) {
    } else {
    }
    if let Ok(_) = Ok::<_, std::sync::MutexGuard<()>>(()) {}
    if let Err(_) = Err::<std::sync::MutexGuard<()>, _>(()) {}

    if let Ok(_) = Ok::<_, ()>(String::new()) {}
    if let Err(_) = Err::<(), _>((String::new(), ())) {}

    // Option
    if let Some(_) = Some(m.lock()) {}
    if let Some(_) = Some(m.lock().unwrap().0) {}

    {
        if let None = None::<std::sync::MutexGuard<()>> {}
    }
    if let None = None::<std::sync::MutexGuard<()>> {
    } else {
    }

    if let None = None::<std::sync::MutexGuard<()>> {}

    if let Some(_) = Some(String::new()) {}
    if let Some(_) = Some((String::new(), ())) {}

    // Poll
    if let Ready(_) = Ready(m.lock()) {}
    if let Ready(_) = Ready(m.lock().unwrap().0) {}

    {
        if let Pending = Pending::<std::sync::MutexGuard<()>> {}
    }
    if let Pending = Pending::<std::sync::MutexGuard<()>> {
    } else {
    }

    if let Pending = Pending::<std::sync::MutexGuard<()>> {}

    if let Ready(_) = Ready(String::new()) {}
    if let Ready(_) = Ready((String::new(), ())) {}
}