rust/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 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:14:12
2018-10-06 18:18:06 +02:00
|
2018-12-10 06:27:19 +01:00
14 | if let Ok(_) = Ok::<i32, i32>(42) {}
| -------^^^^^------------------------ help: try this: `if Ok::<i32, i32>(42).is_ok()`
2018-10-06 18:18:06 +02:00
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
error: redundant pattern matching, consider using `is_err()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:16:12
|
2018-12-10 06:27:19 +01:00
16 | if let Err(_) = Err::<i32, i32>(42) {}
| -------^^^^^^------------------------- help: try this: `if Err::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_none()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:18:12
|
2018-12-10 06:27:19 +01:00
18 | if let None = None::<()> {}
| -------^^^^---------------- help: try this: `if None::<()>.is_none()`
error: redundant pattern matching, consider using `is_some()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:20:12
|
2018-12-10 06:27:19 +01:00
20 | if let Some(_) = Some(42) {}
| -------^^^^^^^-------------- help: try this: `if Some(42).is_some()`
error: redundant pattern matching, consider using `is_ok()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:34:5
|
2018-12-10 06:27:19 +01:00
34 | / match Ok::<i32, i32>(42) {
35 | | Ok(_) => true,
36 | | Err(_) => false,
37 | | };
| |_____^ help: try this: `Ok::<i32, i32>(42).is_ok()`
error: redundant pattern matching, consider using `is_err()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:39:5
|
2018-12-10 06:27:19 +01:00
39 | / match Ok::<i32, i32>(42) {
40 | | Ok(_) => false,
41 | | Err(_) => true,
42 | | };
| |_____^ help: try this: `Ok::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_err()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:44:5
|
2018-12-10 06:27:19 +01:00
44 | / match Err::<i32, i32>(42) {
45 | | Ok(_) => false,
46 | | Err(_) => true,
47 | | };
| |_____^ help: try this: `Err::<i32, i32>(42).is_err()`
error: redundant pattern matching, consider using `is_ok()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:49:5
|
2018-12-10 06:27:19 +01:00
49 | / match Err::<i32, i32>(42) {
50 | | Ok(_) => true,
51 | | Err(_) => false,
52 | | };
| |_____^ help: try this: `Err::<i32, i32>(42).is_ok()`
error: redundant pattern matching, consider using `is_some()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:54:5
|
2018-12-10 06:27:19 +01:00
54 | / match Some(42) {
55 | | Some(_) => true,
56 | | None => false,
57 | | };
| |_____^ help: try this: `Some(42).is_some()`
error: redundant pattern matching, consider using `is_none()`
2018-12-10 06:27:19 +01:00
--> $DIR/redundant_pattern_matching.rs:59:5
|
2018-12-10 06:27:19 +01:00
59 | / match None::<()> {
60 | | Some(_) => false,
61 | | None => true,
62 | | };
| |_____^ help: try this: `None::<()>.is_none()`
error: aborting due to 10 previous errors
2018-01-16 17:06:27 +01:00