2017-02-07 20:05:30 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:15:12
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-07-26 19:07:07 +00:00
|
|
|
LL | if let Ok(_) = &result {}
|
|
|
|
| -------^^^^^---------- help: try this: `if result.is_ok()`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-10-10 15:13:53 +00:00
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-07-26 19:07:07 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:17:12
|
2020-07-26 19:07:07 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:19:12
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let Err(_) = Err::<i32, i32>(42) {}
|
2020-04-17 10:53:13 +00:00
|
|
|
| -------^^^^^^---------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-07 13:36:42 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:21:15
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
|
LL | while let Ok(_) = Ok::<i32, i32>(10) {}
|
|
|
|
| ----------^^^^^--------------------- help: try this: `while Ok::<i32, i32>(10).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:23:15
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
|
LL | while let Err(_) = Ok::<i32, i32>(10) {}
|
|
|
|
| ----------^^^^^^--------------------- help: try this: `while Ok::<i32, i32>(10).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:33:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:38:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `Ok::<i32, i32>(42).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:43:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:48:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_ok()`
|
|
|
|
|
2019-08-08 19:27:50 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 19:13:22 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:53:20
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
|
LL | let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
|
2020-04-17 10:53:13 +00:00
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<usize, ()>(4).is_ok()`
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:60:20
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
2020-09-21 13:32:26 +00:00
|
|
|
LL | let _ = if let Ok(_) = gen_res() {
|
|
|
|
| -------^^^^^------------ help: try this: `if gen_res().is_ok()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:62:19
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | } else if let Err(_) = gen_res() {
|
|
|
|
| -------^^^^^^------------ help: try this: `if gen_res().is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:85:19
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(_) = r#try!(result_opt()) {}
|
2023-03-02 05:51:04 +00:00
|
|
|
| ----------^^^^^^^----------------------- help: try this: `while r#try!(result_opt()).is_some()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:86:16
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = r#try!(result_opt()) {}
|
2023-03-02 05:51:04 +00:00
|
|
|
| -------^^^^^^^----------------------- help: try this: `if r#try!(result_opt()).is_some()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:92:12
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = m!() {}
|
|
|
|
| -------^^^^^^^------- help: try this: `if m!().is_some()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:93:15
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
2020-04-23 08:40:16 +00:00
|
|
|
LL | while let Some(_) = m!() {}
|
|
|
|
| ----------^^^^^^^------- help: try this: `while m!().is_some()`
|
2019-08-08 19:27:50 +00:00
|
|
|
|
2020-09-20 01:32:36 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:111:12
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:113:12
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | if let Err(_) = Err::<i32, i32>(42) {}
|
|
|
|
| -------^^^^^^---------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:115:15
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | while let Ok(_) = Ok::<i32, i32>(10) {}
|
|
|
|
| ----------^^^^^--------------------- help: try this: `while Ok::<i32, i32>(10).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:117:15
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | while let Err(_) = Ok::<i32, i32>(10) {}
|
|
|
|
| ----------^^^^^^--------------------- help: try this: `while Ok::<i32, i32>(10).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:119:5
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:124:5
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
|
|
|
|
|
2023-05-05 19:33:16 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2023-05-11 05:07:10 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:134:5
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
LL | / match x {
|
2023-05-05 19:33:16 +00:00
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | _ => false,
|
|
|
|
LL | | };
|
2023-05-11 05:07:10 +00:00
|
|
|
| |_____^ help: try this: `x.is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2023-05-11 05:07:10 +00:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:139:5
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | _ => true,
|
2023-05-05 19:33:16 +00:00
|
|
|
LL | | };
|
2023-05-11 05:07:10 +00:00
|
|
|
| |_____^ help: try this: `x.is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:144:5
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | Err(_) => true,
|
2023-05-09 18:50:47 +00:00
|
|
|
LL | | _ => false,
|
2023-05-05 19:33:16 +00:00
|
|
|
LL | | };
|
2023-05-11 05:07:10 +00:00
|
|
|
| |_____^ help: try this: `x.is_err()`
|
2023-05-05 19:33:16 +00:00
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:149:5
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
2023-05-11 05:07:10 +00:00
|
|
|
LL | / match x {
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | _ => true,
|
2023-05-05 19:33:16 +00:00
|
|
|
LL | | };
|
2023-05-11 05:07:10 +00:00
|
|
|
| |_____^ help: try this: `x.is_ok()`
|
2023-05-05 19:33:16 +00:00
|
|
|
|
|
|
|
error: aborting due to 26 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|