rust-clippy/tests/ui/checked_unwrap.stderr

314 lines
10 KiB
Text
Raw Normal View History

error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:16:9
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | if x.is_some() {
2018-10-06 16:18:06 +00:00
| ----------- the check is happening here
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^
|
2018-06-08 03:55:11 +00:00
note: lint level defined here
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:10:35
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
2018-10-06 16:18:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:18:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_some() {
| ----------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
|
2018-06-08 18:38:39 +00:00
note: lint level defined here
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:10:9
|
2018-12-27 15:57:55 +00:00
LL | #![deny(clippy::panicking_unwrap, clippy::unnecessary_unwrap)]
| ^^^^^^^^^^^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:21:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_none() {
| ----------- because of this check
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:23:9
2018-06-08 03:55:11 +00:00
|
2018-12-27 15:57:55 +00:00
LL | if x.is_none() {
2018-06-08 03:55:11 +00:00
| ----------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
2018-06-08 03:55:11 +00:00
| ^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:27:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:28:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() {
| --------- because of this check
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
LL | x.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:30:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:31:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:34:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_err() {
| ---------- because of this check
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:35:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_err() {
2018-06-08 03:55:11 +00:00
| ---------- the check is happening here
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
LL | x.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:37:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_err() {
2018-06-08 03:55:11 +00:00
| ---------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:38:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_err() {
| ---------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:55:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && y.is_err() {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:56:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && y.is_err() {
| --------- because of this check
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
LL | x.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:57:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && y.is_err() {
| ---------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:58:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && y.is_err() {
2018-06-08 03:55:11 +00:00
| ---------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:72:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || y.is_ok() {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:73:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || y.is_ok() {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:74:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || y.is_ok() {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:75:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || y.is_ok() {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:79:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:80:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
| --------- because of this check
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // unnecessary
LL | x.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:81:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:82:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:83:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
2018-06-08 03:55:11 +00:00
| ---------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | z.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:84:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() && !(y.is_ok() || z.is_err()) {
| ---------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | z.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:92:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:93:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap_err(); // unnecessary
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:94:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
2018-06-08 03:55:11 +00:00
| --------- the check is happening here
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap_err()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:95:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
| --------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | y.unwrap_err(); // will panic
| ^^^^^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:96:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
| ---------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | z.unwrap(); // will panic
| ^^^^^^^^^^
error: You checked before that `unwrap_err()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-10 05:27:19 +00:00
--> $DIR/checked_unwrap.rs:97:9
|
2018-12-27 15:57:55 +00:00
LL | if x.is_ok() || !(y.is_ok() && z.is_err()) {
2018-12-10 05:27:19 +00:00
| ---------- the check is happening here
2018-06-08 03:55:11 +00:00
...
2018-12-27 15:57:55 +00:00
LL | z.unwrap_err(); // unnecessary
2018-12-10 05:27:19 +00:00
| ^^^^^^^^^^^^^^
error: You checked before that `unwrap()` cannot fail. Instead of checking and unwrapping, it's better to use `if let` or `match`.
2018-12-27 15:57:55 +00:00
--> $DIR/checked_unwrap.rs:105:13
|
LL | if x.is_some() {
| ----------- the check is happening here
LL | x.unwrap(); // unnecessary
| ^^^^^^^^^^
error: This call to `unwrap()` will always panic.
2018-12-27 15:57:55 +00:00
--> $DIR/checked_unwrap.rs:107:13
|
LL | if x.is_some() {
| ----------- because of this check
...
2018-12-27 15:57:55 +00:00
LL | x.unwrap(); // will panic
| ^^^^^^^^^^
error: aborting due to 34 previous errors