]> git.lizzy.rs Git - rust.git/blob - tests/ui/redundant_pattern_matching.stderr
Auto merge of #4569 - james9909:add-comparison-chain, r=oli-obk
[rust.git] / tests / ui / redundant_pattern_matching.stderr
1 error: redundant pattern matching, consider using `is_ok()`
2   --> $DIR/redundant_pattern_matching.rs:8:12
3    |
4 LL |     if let Ok(_) = Ok::<i32, i32>(42) {}
5    |     -------^^^^^------------------------ help: try this: `Ok::<i32, i32>(42).is_ok();`
6    |
7    = note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
8
9 error: redundant pattern matching, consider using `is_err()`
10   --> $DIR/redundant_pattern_matching.rs:10:12
11    |
12 LL |     if let Err(_) = Err::<i32, i32>(42) {}
13    |     -------^^^^^^------------------------- help: try this: `Err::<i32, i32>(42).is_err();`
14
15 error: redundant pattern matching, consider using `is_none()`
16   --> $DIR/redundant_pattern_matching.rs:12:12
17    |
18 LL |     if let None = None::<()> {}
19    |     -------^^^^---------------- help: try this: `None::<()>.is_none();`
20
21 error: redundant pattern matching, consider using `is_some()`
22   --> $DIR/redundant_pattern_matching.rs:14:12
23    |
24 LL |     if let Some(_) = Some(42) {}
25    |     -------^^^^^^^-------------- help: try this: `Some(42).is_some();`
26
27 error: redundant pattern matching, consider using `is_ok()`
28   --> $DIR/redundant_pattern_matching.rs:28:5
29    |
30 LL | /     match Ok::<i32, i32>(42) {
31 LL | |         Ok(_) => true,
32 LL | |         Err(_) => false,
33 LL | |     };
34    | |_____^ help: try this: `Ok::<i32, i32>(42).is_ok()`
35
36 error: redundant pattern matching, consider using `is_err()`
37   --> $DIR/redundant_pattern_matching.rs:33:5
38    |
39 LL | /     match Ok::<i32, i32>(42) {
40 LL | |         Ok(_) => false,
41 LL | |         Err(_) => true,
42 LL | |     };
43    | |_____^ help: try this: `Ok::<i32, i32>(42).is_err()`
44
45 error: redundant pattern matching, consider using `is_err()`
46   --> $DIR/redundant_pattern_matching.rs:38:5
47    |
48 LL | /     match Err::<i32, i32>(42) {
49 LL | |         Ok(_) => false,
50 LL | |         Err(_) => true,
51 LL | |     };
52    | |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
53
54 error: redundant pattern matching, consider using `is_ok()`
55   --> $DIR/redundant_pattern_matching.rs:43:5
56    |
57 LL | /     match Err::<i32, i32>(42) {
58 LL | |         Ok(_) => true,
59 LL | |         Err(_) => false,
60 LL | |     };
61    | |_____^ help: try this: `Err::<i32, i32>(42).is_ok()`
62
63 error: redundant pattern matching, consider using `is_some()`
64   --> $DIR/redundant_pattern_matching.rs:48:5
65    |
66 LL | /     match Some(42) {
67 LL | |         Some(_) => true,
68 LL | |         None => false,
69 LL | |     };
70    | |_____^ help: try this: `Some(42).is_some()`
71
72 error: redundant pattern matching, consider using `is_none()`
73   --> $DIR/redundant_pattern_matching.rs:53:5
74    |
75 LL | /     match None::<()> {
76 LL | |         Some(_) => false,
77 LL | |         None => true,
78 LL | |     };
79    | |_____^ help: try this: `None::<()>.is_none()`
80
81 error: redundant pattern matching, consider using `is_none()`
82   --> $DIR/redundant_pattern_matching.rs:58:13
83    |
84 LL |       let _ = match None::<()> {
85    |  _____________^
86 LL | |         Some(_) => false,
87 LL | |         None => true,
88 LL | |     };
89    | |_____^ help: try this: `None::<()>.is_none()`
90
91 error: redundant pattern matching, consider using `is_ok()`
92   --> $DIR/redundant_pattern_matching.rs:63:20
93    |
94 LL |     let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
95    |             -------^^^^^--------------------------------------------- help: try this: `Ok::<usize, ()>(4).is_ok()`
96
97 error: redundant pattern matching, consider using `is_some()`
98   --> $DIR/redundant_pattern_matching.rs:69:20
99    |
100 LL |     let x = if let Some(_) = opt { true } else { false };
101    |             -------^^^^^^^------------------------------ help: try this: `opt.is_some()`
102
103 error: redundant pattern matching, consider using `is_ok()`
104   --> $DIR/redundant_pattern_matching.rs:76:12
105    |
106 LL |       if let Ok(_) = Ok::<i32, i32>(4) {
107    |  _____-      ^^^^^
108 LL | |         true
109 LL | |     } else {
110 LL | |         false
111 LL | |     }
112    | |_____- help: try this: `Ok::<i32, i32>(4).is_ok()`
113
114 error: redundant pattern matching, consider using `is_ok()`
115   --> $DIR/redundant_pattern_matching.rs:84:12
116    |
117 LL |       if let Ok(_) = Ok::<i32, i32>(4) {
118    |  _____-      ^^^^^
119 LL | |         true
120 LL | |     } else {
121 LL | |         false
122 LL | |     };
123    | |_____- help: try this: `Ok::<i32, i32>(4).is_ok()`
124
125 error: aborting due to 15 previous errors
126