summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_single_binding2.rs
blob: 5a4bb8441fffc5676422e282c922adbcad7ee180 (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
// run-rustfix
#![warn(clippy::match_single_binding)]
#![allow(unused_variables)]
#![allow(clippy::uninlined_format_args)]

fn main() {
    // Lint (additional curly braces needed, see #6572)
    struct AppendIter<I>
    where
        I: Iterator,
    {
        inner: Option<(I, <I as Iterator>::Item)>,
    }

    #[allow(dead_code)]
    fn size_hint<I: Iterator>(iter: &AppendIter<I>) -> (usize, Option<usize>) {
        match &iter.inner {
            Some((iter, _item)) => match iter.size_hint() {
                (min, max) => (min.saturating_add(1), max.and_then(|max| max.checked_add(1))),
            },
            None => (0, Some(0)),
        }
    }

    // Lint (no additional curly braces needed)
    let opt = Some((5, 2));
    let get_tup = || -> (i32, i32) { (1, 2) };
    match opt {
        #[rustfmt::skip]
        Some((first, _second)) => {
            match get_tup() {
                (a, b) => println!("a {:?} and b {:?}", a, b),
            }
        },
        None => println!("nothing"),
    }

    fn side_effects() {}

    // Lint (scrutinee has side effects)
    // issue #7094
    match side_effects() {
        _ => println!("Side effects"),
    }

    // Lint (scrutinee has side effects)
    // issue #7094
    let x = 1;
    match match x {
        0 => 1,
        _ => 2,
    } {
        _ => println!("Single branch"),
    }
}