2017-02-07 20:05:30 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:15:12
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-07-26 19:07:07 +00:00
|
|
|
LL | if let Ok(_) = &result {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^---------- help: try: `if result.is_ok()`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-10-10 15:13:53 +00:00
|
|
|
= note: `-D clippy::redundant-pattern-matching` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::redundant_pattern_matching)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-07-26 19:07:07 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:17:12
|
2020-07-26 19:07:07 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^--------------------- help: try: `if Ok::<i32, i32>(42).is_ok()`
|
2020-07-26 19:07:07 +00:00
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:19:12
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let Err(_) = Err::<i32, i32>(42) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^^---------------------- help: try: `if Err::<i32, i32>(42).is_err()`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-07 13:36:42 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:21:15
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
|
LL | while let Ok(_) = Ok::<i32, i32>(10) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^--------------------- help: try: `while Ok::<i32, i32>(10).is_ok()`
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:23:15
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
|
LL | while let Err(_) = Ok::<i32, i32>(10) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^^--------------------- help: try: `while Ok::<i32, i32>(10).is_err()`
|
2020-04-17 10:53:13 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:33:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Ok::<i32, i32>(42).is_ok()`
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:38:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Ok::<i32, i32>(42).is_err()`
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:43:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Err::<i32, i32>(42).is_err()`
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:48:5
|
2018-10-07 13:36:42 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Err::<i32, i32>(42).is_ok()`
|
2018-10-07 13:36:42 +00:00
|
|
|
|
2019-08-08 19:27:50 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:53:20
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
|
LL | let _ = if let Ok(_) = Ok::<usize, ()>(4) { true } else { false };
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^--------------------- help: try: `if Ok::<usize, ()>(4).is_ok()`
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:61:20
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
LL | let _ = if let Ok(_) = gen_res() {
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^------------ help: try: `if gen_res().is_ok()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:63:19
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | } else if let Err(_) = gen_res() {
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^^------------ help: try: `if gen_res().is_err()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:86:19
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | while let Some(_) = r#try!(result_opt()) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^^^----------------------- help: try: `while r#try!(result_opt()).is_some()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:87:16
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = r#try!(result_opt()) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^^^----------------------- help: try: `if r#try!(result_opt()).is_some()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:93:12
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
|
LL | if let Some(_) = m!() {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^^^------- help: try: `if m!().is_some()`
|
2020-04-23 08:40:16 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_some()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:94:15
|
2019-08-08 19:27:50 +00:00
|
|
|
|
|
2020-04-23 08:40:16 +00:00
|
|
|
LL | while let Some(_) = m!() {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^^^------- help: try: `while m!().is_some()`
|
2019-08-08 19:27:50 +00:00
|
|
|
|
2020-09-20 01:32:36 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:112:12
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | if let Ok(_) = Ok::<i32, i32>(42) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^--------------------- help: try: `if Ok::<i32, i32>(42).is_ok()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:114:12
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | if let Err(_) = Err::<i32, i32>(42) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| -------^^^^^^---------------------- help: try: `if Err::<i32, i32>(42).is_err()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:116:15
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | while let Ok(_) = Ok::<i32, i32>(10) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^--------------------- help: try: `while Ok::<i32, i32>(10).is_ok()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:118:15
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | while let Err(_) = Ok::<i32, i32>(10) {}
|
2023-07-17 08:19:29 +00:00
|
|
|
| ----------^^^^^^--------------------- help: try: `while Ok::<i32, i32>(10).is_err()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:120:5
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | / match Ok::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Ok::<i32, i32>(42).is_ok()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:125:5
|
2020-09-20 01:32:36 +00:00
|
|
|
|
|
|
|
|
LL | / match Err::<i32, i32>(42) {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `Err::<i32, i32>(42).is_err()`
|
2020-09-20 01:32:36 +00:00
|
|
|
|
2023-05-20 13:39:26 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:135:5
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | Ok(_) => true,
|
|
|
|
LL | | _ => false,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `x.is_ok()`
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:140:5
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | Ok(_) => false,
|
|
|
|
LL | | _ => true,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `x.is_err()`
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:145:5
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | Err(_) => true,
|
|
|
|
LL | | _ => false,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `x.is_err()`
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:150:5
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | / match x {
|
|
|
|
LL | | Err(_) => false,
|
|
|
|
LL | | _ => true,
|
|
|
|
LL | | };
|
2023-07-17 08:19:29 +00:00
|
|
|
| |_____^ help: try: `x.is_ok()`
|
2023-05-20 13:39:26 +00:00
|
|
|
|
2023-06-02 09:41:57 +00:00
|
|
|
error: redundant pattern matching, consider using `is_ok()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:171:13
|
2023-06-02 09:41:57 +00:00
|
|
|
|
|
|
|
|
LL | let _ = matches!(x, Ok(_));
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `x.is_ok()`
|
2023-06-02 09:41:57 +00:00
|
|
|
|
|
|
|
error: redundant pattern matching, consider using `is_err()`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/redundant_pattern_matching_result.rs:173:13
|
2023-06-02 09:41:57 +00:00
|
|
|
|
|
|
|
|
LL | let _ = matches!(x, Err(_));
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: try: `x.is_err()`
|
2023-06-02 09:41:57 +00:00
|
|
|
|
|
|
|
error: aborting due to 28 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|