2018-10-30 20:36:52 +00:00
|
|
|
error: Err(_) will match all errors, maybe not a good idea
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:14:9
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Err(_) => panic!("err"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-10-30 20:36:52 +00:00
|
|
|
= note: `-D clippy::match-wild-err-arm` implied by `-D warnings`
|
|
|
|
= note: to remove this warning, match each error separately or use unreachable macro
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-30 20:36:52 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:13:18
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-10-30 20:36:52 +00:00
|
|
|
= note: `-D clippy::match-same-arms` implied by `-D warnings`
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:12:18
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:12:9
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-10-30 20:36:52 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
2017-02-11 06:57:50 +00:00
|
|
|
error: Err(_) will match all errors, maybe not a good idea
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:20:9
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Err(_) => panic!(),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this warning, match each error separately or use unreachable macro
|
2017-02-11 06:57:50 +00:00
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:19:18
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:18:18
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:18:9
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-10-30 20:36:52 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
2017-02-11 13:42:42 +00:00
|
|
|
error: Err(_) will match all errors, maybe not a good idea
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:26:9
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Err(_) => {
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: to remove this warning, match each error separately or use unreachable macro
|
2017-02-11 13:42:42 +00:00
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:25:18
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:24:18
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-10-30 20:36:52 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:24:9
|
2018-10-30 20:36:52 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-10-30 20:36:52 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:34:18
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-12-04 06:17:53 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:33:18
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-12-04 06:17:53 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:33:9
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-12-04 06:17:53 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:41:18
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-12-04 06:17:53 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:40:18
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-12-04 06:17:53 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:40:9
|
2018-12-04 06:17:53 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-12-04 06:17:53 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:47:18
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(_) => println!("ok"),
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:46:18
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:46:9
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-12-10 05:27:19 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:53:18
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(_) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:52:18
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:52:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-12-27 15:57:55 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-09-12 12:25:58 +00:00
|
|
|
|
2017-11-29 20:52:49 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:76:29
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (Ok(_), Some(x)) => println!("ok {}", x),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-11-29 20:42:37 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:75:29
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `(Ok(x), Some(_)) | (Ok(_), Some(x))`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:75:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2018-12-27 15:57:55 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-11-29 20:42:37 +00:00
|
|
|
|
2017-11-29 21:42:58 +00:00
|
|
|
error: this `match` has identical arm bodies
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:91:18
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(_) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-11-29 21:42:58 +00:00
|
|
|
note: same as this
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:90:18
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
2019-05-20 16:25:13 +00:00
|
|
|
help: consider refactoring into `Ok(3) | Ok(_)`
|
2019-07-17 06:08:26 +00:00
|
|
|
--> $DIR/matches.rs:90:9
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
2019-05-20 16:25:13 +00:00
|
|
|
| ^^^^^
|
2018-12-27 15:57:55 +00:00
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
2017-11-29 21:42:58 +00:00
|
|
|
|
2019-07-17 06:08:26 +00:00
|
|
|
error: aborting due to 12 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|