2017-02-07 20:05:30 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:6:12
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
2019-08-07 18:34:23 +00:00
|
|
|
| -------^^^^^------------------------ help: try this: `Ok::<i32, i32>(42).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
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:8: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) {}
|
2019-08-07 18:34:23 +00:00
|
|
|
| -------^^^^^^------------------------- help: try this: `Err::<i32, i32>(42).is_err()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_none()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:10:12
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let None = None::<()> {}
|
2019-08-07 18:34:23 +00:00
|
|
|
| -------^^^^---------------- help: try this: `None::<()>.is_none()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:12:12
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let Some(_) = Some(42) {}
|
2019-08-07 18:34:23 +00:00
|
|
|
| -------^^^^^^^-------------- help: try this: `Some(42).is_some()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-07 13:36:42 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:26: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()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:31: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()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:36: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()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:41: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()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:46:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Some(42) {
|
|
|
|
LL | | Some(_) => true,
|
|
|
|
LL | | None => false,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `Some(42).is_some()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_none()`
|
2019-08-08 19:27:50 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:51:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match None::<()> {
|
|
|
|
LL | | Some(_) => false,
|
|
|
|
LL | | None => true,
|
|
|
|
LL | | };
|
2018-10-07 13:36:42 +00:00
|
|
|
| |_____^ help: try this: `None::<()>.is_none()`
|
|
|
|
|
2019-08-08 19:27:50 +00:00
|
|
|
error: redundant pattern matching, consider using `is_none()`
|
2019-08-21 05:43:42 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:56:13
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
2019-08-21 05:43:42 +00:00
|
|
|
LL | let _ = match None::<()> {
|
|
|
|
| _____________^
|
2019-08-08 19:27:50 +00:00
|
|
|
LL | | Some(_) => false,
|
|
|
|
LL | | None => true,
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `None::<()>.is_none()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
|
|
|
--> $DIR/redundant_pattern_matching.rs:61:20
|
|
|
|
|
|
|
|
|
LL | let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
|
|
|
|
| -------^^^^^--------------------------------------------- help: try this: `Ok::<usize, ()>(4).is_ok()`
|
|
|
|
|
2019-08-21 05:43:42 +00:00
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
|
|
|
--> $DIR/redundant_pattern_matching.rs:67:20
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
2019-08-21 05:43:42 +00:00
|
|
|
LL | let x = if let Some(_) = opt { true } else { false };
|
|
|
|
| -------^^^^^^^------------------------------ help: try this: `opt.is_some()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
|
|
|
--> $DIR/redundant_pattern_matching.rs:69:20
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
2019-08-21 05:43:42 +00:00
|
|
|
LL | let y = if let Some(_) = opt {};
|
|
|
|
| -------^^^^^^^--------- help: try this: `opt.is_some()`
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2019-08-21 05:43:42 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:77:12
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(4) {
|
|
|
|
| _____- ^^^^^
|
|
|
|
LL | | true
|
|
|
|
LL | | } else {
|
|
|
|
LL | | false
|
|
|
|
LL | | }
|
|
|
|
| |_____- help: try this: `Ok::<i32, i32>(4).is_ok()`
|
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2019-08-21 05:43:42 +00:00
|
|
|
--> $DIR/redundant_pattern_matching.rs:85:12
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(4) {
|
|
|
|
| _____- ^^^^^
|
|
|
|
LL | | true
|
|
|
|
LL | | } else {
|
|
|
|
LL | | false
|
|
|
|
LL | | };
|
|
|
|
| |_____- help: try this: `Ok::<i32, i32>(4).is_ok()`
|
|
|
|
|
2019-08-21 05:43:42 +00:00
|
|
|
error: aborting due to 16 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|