2017-02-07 20:05:30 +00:00
|
|
|
error: you don't need to add `&` to all patterns
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:20:9
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match v {
|
|
|
|
LL | | &Some(v) => println!("{:?}", v),
|
|
|
|
LL | | &None => println!("none"),
|
|
|
|
LL | | }
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_________^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::match-ref-pats` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | match *v {
|
|
|
|
LL | Some(v) => println!("{:?}", v),
|
|
|
|
LL | None => println!("none"),
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you don't need to add `&` to all patterns
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:31:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match tup {
|
|
|
|
LL | | &(v, 1) => println!("{}", v),
|
|
|
|
LL | | _ => println!("none"),
|
|
|
|
LL | | }
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | match *tup {
|
|
|
|
LL | (v, 1) => println!("{}", v),
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you don't need to add `&` to both the expression and the patterns
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:37:5
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / match &w {
|
|
|
|
LL | | &Some(v) => println!("{:?}", v),
|
|
|
|
LL | | &None => println!("none"),
|
|
|
|
LL | | }
|
2018-04-05 19:18:38 +00:00
|
|
|
| |_____^
|
2018-02-04 12:41:54 +00:00
|
|
|
help: try
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | match w {
|
|
|
|
LL | Some(v) => println!("{:?}", v),
|
|
|
|
LL | None => println!("none"),
|
2018-04-05 19:18:38 +00:00
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you don't need to add `&` to all patterns
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:48:5
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if let &None = a {
|
|
|
|
LL | | println!("none");
|
|
|
|
LL | | }
|
2018-04-07 08:23:27 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
help: instead of prefixing all patterns with `&`, you can dereference the expression
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let None = *a {
|
2018-05-29 08:56:58 +00:00
|
|
|
| ^^^^ ^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: you don't need to add `&` to both the expression and the patterns
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:53:5
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / if let &None = &b {
|
|
|
|
LL | | println!("none");
|
|
|
|
LL | | }
|
2018-04-07 08:23:27 +00:00
|
|
|
| |_____^
|
2018-02-04 12:41:54 +00:00
|
|
|
help: try
|
2018-04-07 08:23:27 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if let None = b {
|
2018-05-29 08:56:58 +00:00
|
|
|
| ^^^^ ^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2018-10-30 20:36:52 +00:00
|
|
|
error: Err(_) will match all errors, maybe not a good idea
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:64: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:63: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:62: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
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:62: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
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:70: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:69: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:68: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
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:68: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
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:76: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:75: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:74: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
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:74: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
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:84: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:83: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
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:83: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
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:91: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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:90: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
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:90: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
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:97:18
|
|
|
|
|
|
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
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:96:18
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/matches.rs:96:18
|
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Ok(3) => println!("ok"),
|
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
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:103:18
|
|
|
|
|
|
|
|
|
LL | Ok(_) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-09-12 12:25:58 +00:00
|
|
|
note: same as this
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:102:18
|
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-09-12 12:25:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:102:18
|
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:126:29
|
|
|
|
|
|
|
|
|
LL | (Ok(_), Some(x)) => println!("ok {}", x),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-11-29 20:42:37 +00:00
|
|
|
note: same as this
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:125:29
|
|
|
|
|
|
|
|
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-11-29 20:42:37 +00:00
|
|
|
note: consider refactoring into `(Ok(x), Some(_)) | (Ok(_), Some(x))`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:125:29
|
|
|
|
|
|
|
|
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= 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
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:141:18
|
|
|
|
|
|
|
|
|
LL | Ok(_) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-11-29 21:42:58 +00:00
|
|
|
note: same as this
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:140:18
|
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-11-29 21:42:58 +00:00
|
|
|
note: consider refactoring into `Ok(3) | Ok(_)`
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:140:18
|
|
|
|
|
|
|
|
|
LL | Ok(3) => println!("ok"),
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
= 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
|
|
|
|
2017-12-19 22:22:16 +00:00
|
|
|
error: use as_ref() instead
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:150:33
|
|
|
|
|
|
|
|
|
LL | let borrowed: Option<&()> = match owned {
|
|
|
|
| _________________________________^
|
|
|
|
LL | | None => None,
|
|
|
|
LL | | Some(ref v) => Some(v),
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `owned.as_ref()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::match-as-ref` implied by `-D warnings`
|
2017-12-19 22:22:16 +00:00
|
|
|
|
2017-12-20 09:39:48 +00:00
|
|
|
error: use as_mut() instead
|
2018-12-27 15:57:55 +00:00
|
|
|
--> $DIR/matches.rs:156:39
|
|
|
|
|
|
|
|
|
LL | let borrow_mut: Option<&mut ()> = match mut_owned {
|
|
|
|
| _______________________________________^
|
|
|
|
LL | | None => None,
|
|
|
|
LL | | Some(ref mut v) => Some(v),
|
|
|
|
LL | | };
|
|
|
|
| |_____^ help: try this: `mut_owned.as_mut()`
|
2017-12-19 22:22:16 +00:00
|
|
|
|
2018-12-04 06:17:53 +00:00
|
|
|
error: aborting due to 19 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|