2017-02-07 14:05:30 -06:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/if_let_redundant_pattern_matching.rs:9:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
9 | if let Ok(_) = Ok::<i32, i32>(42) {}
|
2017-07-21 03:40:23 -05:00
|
|
|
| -------^^^^^--------------------- help: try this: `if Ok::<i32, i32>(42).is_ok()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::if-let-redundant-pattern-matching` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/if_let_redundant_pattern_matching.rs:11:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:31:44 -05:00
|
|
|
11 | if let Err(_) = Err::<i32, i32>(42) {
|
2017-07-21 03:40:23 -05:00
|
|
|
| -------^^^^^^---------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_none()`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/if_let_redundant_pattern_matching.rs:14:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:31:44 -05:00
|
|
|
14 | if let None = None::<()> {
|
2017-07-21 03:40:23 -05:00
|
|
|
| -------^^^^------------- help: try this: `if None::<()>.is_none()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2017-08-01 10:54:21 -05:00
|
|
|
--> $DIR/if_let_redundant_pattern_matching.rs:17:12
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 06:31:44 -05:00
|
|
|
17 | if let Some(_) = Some(42) {
|
2017-07-21 03:40:23 -05:00
|
|
|
| -------^^^^^^^----------- help: try this: `if Some(42).is_some()`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|