2017-02-07 14:05:30 -06:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:15:12
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2020-07-26 14:07:07 -05:00
|
|
|
LL | if let Ok(_) = &result {}
|
|
|
|
| -------^^^^^---------- help: try this: `if result.is_ok()`
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-10-10 10:13:53 -05:00
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2020-07-26 14:07:07 -05:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:17:12
|
2020-07-26 14:07:07 -05:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
2017-02-07 14:05:30 -06:00
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:19:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if let Err(_) = Err::<i32, i32>(42) {}
|
2020-04-17 05:53:13 -05:00
|
|
|
| -------^^^^^^---------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-10-07 08:36:42 -05:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:21:15
|
2020-04-17 05:53:13 -05: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 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:23:15
|
2020-04-17 05:53:13 -05: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 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:33:5
|
2018-10-07 08:36:42 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2018-10-07 08:36:42 -05:00
|
|
|
| |_____^ help: try this: `Ok::<i32, i32>(42).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:38:5
|
2018-10-07 08:36:42 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2018-10-07 08:36:42 -05:00
|
|
|
| |_____^ help: try this: `Ok::<i32, i32>(42).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:43:5
|
2018-10-07 08:36:42 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2018-10-07 08:36:42 -05:00
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:48:5
|
2018-10-07 08:36:42 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2018-10-07 08:36:42 -05:00
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_ok()`
|
|
|
|
|
2019-08-08 14:27:50 -05:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:53:20
|
2019-08-08 14:27:50 -05:00
|
|
|
|
|
|
|
|
LL | let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
|
2020-04-17 05:53:13 -05:00
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<usize, ()>(4).is_ok()`
|
2019-08-08 14:27:50 -05:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:59:20
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
2020-09-21 08:32:26 -05:00
|
|
|
LL | let _ = if let Ok(_) = gen_res() {
|
|
|
|
| -------^^^^^------------ help: try this: `if gen_res().is_ok()`
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:61:19
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
|
LL | } else if let Err(_) = gen_res() {
|
|
|
|
| -------^^^^^^------------ help: try this: `if gen_res().is_err()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:84:19
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
|
LL | while let Some(_) = r#try!(result_opt()) {}
|
2023-03-01 23:51:04 -06:00
|
|
|
| ----------^^^^^^^----------------------- help: try this: `while r#try!(result_opt()).is_some()`
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:85:16
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = r#try!(result_opt()) {}
|
2023-03-01 23:51:04 -06:00
|
|
|
| -------^^^^^^^----------------------- help: try this: `if r#try!(result_opt()).is_some()`
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:91:12
|
2020-04-23 03:40:16 -05:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = m!() {}
|
|
|
|
| -------^^^^^^^------- help: try this: `if m!().is_some()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:92:15
|
2019-08-08 14:27:50 -05:00
|
|
|
|
|
2020-04-23 03:40:16 -05:00
|
|
|
LL | while let Some(_) = m!() {}
|
|
|
|
| ----------^^^^^^^------- help: try this: `while m!().is_some()`
|
2019-08-08 14:27:50 -05:00
|
|
|
|
2020-09-19 20:32:36 -05:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:110:12
|
2020-09-19 20:32:36 -05: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()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:112:12
|
2020-09-19 20:32:36 -05: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()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:114:15
|
2020-09-19 20:32:36 -05: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 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:116:15
|
2020-09-19 20:32:36 -05: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 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:118:5
|
2020-09-19 20:32:36 -05: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()`
|
2022-10-02 14:13:22 -05:00
|
|
|
--> $DIR/redundant_pattern_matching_result.rs:123:5
|
2020-09-19 20:32:36 -05:00
|
|
|
|
|
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
|
|
|
|
|
2020-09-21 08:32:26 -05:00
|
|
|
error: aborting due to 22 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|