2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap` on `x` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:8:9
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2019-07-15 14:27:44 -05:00
|
|
|
LL | if x.is_ok() && y.is_err() {
|
|
|
|
| --------- the check is happening here
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // unnecessary
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
2020-01-31 13:21:10 -06:00
|
|
|
note: the lint level is defined here
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:1:35
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap_err()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:9:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2019-07-15 14:27:44 -05:00
|
|
|
LL | if x.is_ok() && y.is_err() {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // unnecessary
|
|
|
|
LL | x.unwrap_err(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2020-01-31 13:21:10 -06:00
|
|
|
note: the lint level is defined here
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:1:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2019-07-15 14:27:44 -05:00
|
|
|
LL | #![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-06-08 11:12:01 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:10:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && y.is_err() {
|
2018-06-08 11:12:01 -05:00
|
|
|
| ---------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap(); // will panic
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `y` after checking its variant with `is_err`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:11:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && y.is_err() {
|
2018-06-07 22:55:11 -05:00
|
|
|
| ---------- the check is happening here
|
2018-06-08 11:12:01 -05:00
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap_err(); // unnecessary
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:25:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || y.is_ok() {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `x` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:26:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || y.is_ok() {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap_err(); // unnecessary
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:27:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || y.is_ok() {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `y` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:28:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || y.is_ok() {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap_err(); // unnecessary
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap` on `x` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:32:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // unnecessary
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-06-08 11:12:01 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap_err()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:33:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // unnecessary
|
|
|
|
LL | x.unwrap_err(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:34:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap(); // will panic
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `y` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:35:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
2018-06-08 11:12:01 -05:00
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap_err(); // unnecessary
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap` on `z` after checking its variant with `is_err`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:36:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-07 22:55:11 -05:00
|
|
|
| ---------- the check is happening here
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | z.unwrap(); // unnecessary
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-06-08 11:12:01 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap_err()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:37:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| ---------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | z.unwrap_err(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:45:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap(); // will panic
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `x` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:46:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | x.unwrap_err(); // unnecessary
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap` on `y` after checking its variant with `is_ok`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:47:9
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-07 22:55:11 -05:00
|
|
|
| --------- the check is happening here
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap(); // unnecessary
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-06-08 11:12:01 -05:00
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap_err()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:48:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| --------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | y.unwrap_err(); // will panic
|
2018-06-08 11:12:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2020-07-23 10:06:29 -05:00
|
|
|
error: this call to `unwrap()` will always panic
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:49:9
|
2018-06-08 11:12:01 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-06-08 11:12:01 -05:00
|
|
|
| ---------- because of this check
|
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | z.unwrap(); // will panic
|
2018-05-27 17:02:38 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2021-08-18 15:33:50 -05:00
|
|
|
error: called `unwrap_err` on `z` after checking its variant with `is_err`
|
2019-07-15 14:27:44 -05:00
|
|
|
--> $DIR/complex_conditionals.rs:50:9
|
2018-12-09 23:27:19 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
|
2018-12-09 23:27:19 -06:00
|
|
|
| ---------- the check is happening here
|
2018-06-07 22:55:11 -05:00
|
|
|
...
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | z.unwrap_err(); // unnecessary
|
2018-12-09 23:27:19 -06:00
|
|
|
| ^^^^^^^^^^^^^^
|
2021-08-18 15:33:50 -05:00
|
|
|
|
|
|
|
|
= help: try using `if let` or `match`
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2020-03-18 09:24:48 -05:00
|
|
|
error: aborting due to 20 previous errors
|
2018-05-27 17:02:38 -05:00
|
|
|
|