rust-clippy/tests/ui/matches.stderr

191 lines
6 KiB
Text
Raw Normal View History

error: Err(_) will match all errors, maybe not a good idea
--> $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-04-07 08:23:27 +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
error: this `match` has identical arm bodies
--> $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-04-07 08:23:27 +00:00
|
= note: `-D clippy::match-same-arms` implied by `-D warnings`
2017-09-12 12:25:58 +00:00
note: same as this
--> $DIR/matches.rs:12:18
|
2018-12-27 15:57:55 +00:00
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:12:9
|
2018-12-27 15:57:55 +00:00
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-02-11 06:57:50 +00:00
error: Err(_) will match all errors, maybe not a good idea
--> $DIR/matches.rs:20:9
|
2018-12-27 15:57:55 +00:00
LL | Err(_) => panic!(),
| ^^^^^^
|
= 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
--> $DIR/matches.rs:19: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
--> $DIR/matches.rs:18:18
|
2018-12-27 15:57:55 +00:00
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:18:9
|
2018-12-27 15:57:55 +00:00
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-02-11 13:42:42 +00:00
error: Err(_) will match all errors, maybe not a good idea
--> $DIR/matches.rs:26:9
|
2018-12-27 15:57:55 +00:00
LL | Err(_) => {
| ^^^^^^
|
= 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
--> $DIR/matches.rs:25: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
--> $DIR/matches.rs:24:18
|
2018-12-27 15:57:55 +00:00
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:24:9
|
2018-12-27 15:57:55 +00:00
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
error: this `match` has identical arm bodies
--> $DIR/matches.rs:34: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
--> $DIR/matches.rs:33:18
|
2018-12-27 15:57:55 +00:00
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:33:9
|
2018-12-27 15:57:55 +00:00
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
error: this `match` has identical arm bodies
--> $DIR/matches.rs:41: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
--> $DIR/matches.rs:40:18
|
2018-12-27 15:57:55 +00:00
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:40:9
|
2018-12-27 15:57:55 +00:00
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
error: this `match` has identical arm bodies
--> $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
--> $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
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $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"),
| ^^^^^
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
--> $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
--> $DIR/matches.rs:52:18
2018-12-27 15:57:55 +00:00
|
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:52:9
2018-12-27 15:57:55 +00:00
|
LL | Ok(3) => println!("ok"),
| ^^^^^
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
--> $DIR/matches.rs:76:29
2018-12-27 15:57:55 +00:00
|
LL | (Ok(_), Some(x)) => println!("ok {}", x),
| ^^^^^^^^^^^^^^^^^^^^
|
note: same as this
--> $DIR/matches.rs:75:29
2018-12-27 15:57:55 +00:00
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
| ^^^^^^^^^^^^^^^^^^^^
help: consider refactoring into `(Ok(x), Some(_)) | (Ok(_), Some(x))`
--> $DIR/matches.rs:75:9
2018-12-27 15:57:55 +00:00
|
LL | (Ok(x), Some(_)) => println!("ok {}", x),
| ^^^^^^^^^^^^^^^^
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)
error: this `match` has identical arm bodies
--> $DIR/matches.rs:91:18
2018-12-27 15:57:55 +00:00
|
LL | Ok(_) => println!("ok"),
| ^^^^^^^^^^^^^^
|
note: same as this
--> $DIR/matches.rs:90:18
2018-12-27 15:57:55 +00:00
|
LL | Ok(3) => println!("ok"),
| ^^^^^^^^^^^^^^
help: consider refactoring into `Ok(3) | Ok(_)`
--> $DIR/matches.rs:90:9
2018-12-27 15:57:55 +00:00
|
LL | Ok(3) => println!("ok"),
| ^^^^^
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)
error: aborting due to 12 previous errors
2018-01-16 16:06:27 +00:00