2017-02-07 21:05:30 +01:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2017-05-17 17:51:35 +02:00
|
|
|
--> if_let_redundant_pattern_matching.rs:9:12
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
|
9 | if let Ok(_) = Ok::<i32, i32>(42) {}
|
2017-05-03 12:51:47 +02:00
|
|
|
| -------^^^^^--------------------- help: try this `if Ok::<i32, i32>(42).is_ok()`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
= note: `-D if-let-redundant-pattern-matching` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2017-05-17 17:51:35 +02:00
|
|
|
--> if_let_redundant_pattern_matching.rs:11:12
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-11 13:31:44 +02:00
|
|
|
11 | if let Err(_) = Err::<i32, i32>(42) {
|
2017-05-03 12:51:47 +02:00
|
|
|
| -------^^^^^^---------------------- help: try this `if Err::<i32, i32>(42).is_err()`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_none()`
|
2017-05-17 17:51:35 +02:00
|
|
|
--> if_let_redundant_pattern_matching.rs:14:12
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-11 13:31:44 +02:00
|
|
|
14 | if let None = None::<()> {
|
2017-05-03 12:51:47 +02:00
|
|
|
| -------^^^^------------- help: try this `if None::<()>.is_none()`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2017-05-17 17:51:35 +02:00
|
|
|
--> if_let_redundant_pattern_matching.rs:17:12
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2017-05-11 13:31:44 +02:00
|
|
|
17 | if let Some(_) = Some(42) {
|
2017-05-03 12:51:47 +02:00
|
|
|
| -------^^^^^^^----------- help: try this `if Some(42).is_some()`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-07-03 06:37:30 +02:00
|
|
|
error: aborting due to 4 previous errors
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|