rust-clippy/tests/ui/redundant_pattern_matching.stderr

83 lines
2.7 KiB
Text
Raw Normal View History

error: redundant pattern matching, consider using `is_ok()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:14: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) {}
| -------^^^^^------------------------ help: try this: `if Ok::<i32, i32>(42).is_ok()`
2018-10-06 16:18:06 +00:00
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
error: redundant pattern matching, consider using `is_err()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:16:12
|
2018-12-27 15:57:55 +00:00
LL | if let Err(_) = Err::<i32, i32>(42) {}
2018-12-10 05:27:19 +00:00
| -------^^^^^^------------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_none()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:18:12
|
2018-12-27 15:57:55 +00:00
LL | if let None = None::<()> {}
2018-12-10 05:27:19 +00:00
| -------^^^^---------------- help: try this: `if None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:20:12
|
2018-12-27 15:57:55 +00:00
LL | if let Some(_) = Some(42) {}
2018-12-10 05:27:19 +00:00
| -------^^^^^^^-------------- help: try this: `if Some(42).is_some()`
error: redundant pattern matching, consider using `is_ok()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:34:5
|
2018-12-27 15:57:55 +00: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()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:39:5
|
2018-12-27 15:57:55 +00:00
LL | / match Ok::<i32, i32>(42) {
LL | | Ok(_) => false,
LL | | Err(_) => true,
LL | | };
| |_____^ help: try this: `Ok::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_err()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:44:5
|
2018-12-27 15:57:55 +00:00
LL | / match Err::<i32, i32>(42) {
LL | | Ok(_) => false,
LL | | Err(_) => true,
LL | | };
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_ok()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:49:5
|
2018-12-27 15:57:55 +00:00
LL | / match Err::<i32, i32>(42) {
LL | | Ok(_) => true,
LL | | Err(_) => false,
LL | | };
| |_____^ help: try this: `Err::<i32, i32>(42).is_ok()`
error: redundant pattern matching, consider using `is_some()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:54:5
|
2018-12-27 15:57:55 +00:00
LL | / match Some(42) {
LL | | Some(_) => true,
LL | | None => false,
LL | | };
| |_____^ help: try this: `Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
2018-12-10 05:27:19 +00:00
--> $DIR/redundant_pattern_matching.rs:59:5
|
2018-12-27 15:57:55 +00:00
LL | / match None::<()> {
LL | | Some(_) => false,
LL | | None => true,
LL | | };
| |_____^ help: try this: `None::<()>.is_none()`
error: aborting due to 10 previous errors
2018-01-16 16:06:27 +00:00