rust/tests/ui/if_let_redundant_pattern_ma...

27 lines
1.0 KiB
Plaintext
Raw Normal View History

error: redundant pattern matching, consider using `is_ok()`
2017-08-01 17:54:21 +02:00
--> $DIR/if_let_redundant_pattern_matching.rs:9:12
|
9 | if let Ok(_) = Ok::<i32, i32>(42) {}
2017-07-21 10:40:23 +02:00
| -------^^^^^--------------------- help: try this: `if Ok::<i32, i32>(42).is_ok()`
|
= note: `-D if-let-redundant-pattern-matching` implied by `-D warnings`
error: redundant pattern matching, consider using `is_err()`
2017-08-01 17:54:21 +02:00
--> $DIR/if_let_redundant_pattern_matching.rs:11:12
|
11 | if let Err(_) = Err::<i32, i32>(42) {
2017-07-21 10:40:23 +02:00
| -------^^^^^^---------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_none()`
2017-08-01 17:54:21 +02:00
--> $DIR/if_let_redundant_pattern_matching.rs:14:12
|
14 | if let None = None::<()> {
2017-07-21 10:40:23 +02:00
| -------^^^^------------- help: try this: `if None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
2017-08-01 17:54:21 +02:00
--> $DIR/if_let_redundant_pattern_matching.rs:17:12
|
17 | if let Some(_) = Some(42) {
2017-07-21 10:40:23 +02:00
| -------^^^^^^^----------- help: try this: `if Some(42).is_some()`