2019-06-22 15:34:07 -05:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:15:9
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
2019-06-24 20:28:46 -05:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err)`
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:4:9
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(clippy::try_err)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2019-06-22 15:34:07 -05:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:25:9
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
2019-06-24 20:28:46 -05:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err.into())`
|
2019-06-18 22:22:51 -05:00
|
|
|
|
2019-06-22 15:34:07 -05:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:45:17
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
2019-06-24 20:28:46 -05:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err)`
|
2019-06-18 22:22:51 -05:00
|
|
|
|
2019-06-22 15:34:07 -05:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:64:17
|
2019-06-18 22:22:51 -05:00
|
|
|
|
|
2019-06-24 20:28:46 -05:00
|
|
|
LL | Err(err)?;
|
|
|
|
| ^^^^^^^^^ help: try this: `return Err(err.into())`
|
2019-06-18 22:22:51 -05:00
|
|
|
|
2019-08-08 07:33:34 -05:00
|
|
|
error: returning an `Err(_)` with the `?` operator
|
2019-10-24 00:52:01 -05:00
|
|
|
--> $DIR/try_err.rs:103:9
|
2019-08-08 07:33:34 -05:00
|
|
|
|
|
|
|
|
LL | Err(foo!())?;
|
|
|
|
| ^^^^^^^^^^^^ help: try this: `return Err(foo!())`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2019-06-18 22:22:51 -05:00
|
|
|
|