2019-06-22 20:34:07 +00:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-06-30 22:28:12 +00:00
|
|
|
--> $DIR/try_err.rs:11:9
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
2019-06-25 01:28:46 +00:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err)`
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
2019-06-25 01:28:46 +00:00
|
|
|
--> $DIR/try_err.rs:3:9
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::try_err)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2019-06-22 20:34:07 +00:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-06-30 22:28:12 +00:00
|
|
|
--> $DIR/try_err.rs:21:9
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
2019-06-25 01:28:46 +00:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err.into())`
|
2019-06-19 03:22:51 +00:00
|
|
|
|
2019-06-22 20:34:07 +00:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-06-30 22:28:12 +00:00
|
|
|
--> $DIR/try_err.rs:41:17
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
2019-06-25 01:28:46 +00:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err)`
|
2019-06-19 03:22:51 +00:00
|
|
|
|
2019-06-22 20:34:07 +00:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-06-30 22:28:12 +00:00
|
|
|
--> $DIR/try_err.rs:60:17
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
2019-06-25 01:28:46 +00:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err.into())`
|
2019-06-19 03:22:51 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|