summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/match_single_binding2.stderr
blob: 22bf7d8be4a297f8c4b95162b3a18db283bd11e7 (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
error: this match could be written as a `let` statement
  --> $DIR/match_single_binding2.rs:18:36
   |
LL |               Some((iter, _item)) => match iter.size_hint() {
   |  ____________________________________^
LL | |                 (min, max) => (min.saturating_add(1), max.and_then(|max| max.checked_add(1))),
LL | |             },
   | |_____________^
   |
   = note: `-D clippy::match-single-binding` implied by `-D warnings`
help: consider using a `let` statement
   |
LL ~             Some((iter, _item)) => {
LL +                 let (min, max) = iter.size_hint();
LL +                 (min.saturating_add(1), max.and_then(|max| max.checked_add(1)))
LL ~             },
   |

error: this match could be written as a `let` statement
  --> $DIR/match_single_binding2.rs:31:13
   |
LL | /             match get_tup() {
LL | |                 (a, b) => println!("a {:?} and b {:?}", a, b),
LL | |             }
   | |_____________^
   |
help: consider using a `let` statement
   |
LL ~             let (a, b) = get_tup();
LL +             println!("a {:?} and b {:?}", a, b);
   |

error: this match could be replaced by its scrutinee and body
  --> $DIR/match_single_binding2.rs:42:5
   |
LL | /     match side_effects() {
LL | |         _ => println!("Side effects"),
LL | |     }
   | |_____^
   |
help: consider using the scrutinee and body instead
   |
LL ~     side_effects();
LL +     println!("Side effects");
   |

error: this match could be replaced by its scrutinee and body
  --> $DIR/match_single_binding2.rs:49:5
   |
LL | /     match match x {
LL | |         0 => 1,
LL | |         _ => 2,
LL | |     } {
LL | |         _ => println!("Single branch"),
LL | |     }
   | |_____^
   |
help: consider using the scrutinee and body instead
   |
LL ~     match x {
LL +         0 => 1,
LL +         _ => 2,
LL +     };
LL +     println!("Single branch");
   |

error: aborting due to 4 previous errors