rust-clippy/tests/ui/try_err.stderr

79 lines
2.8 KiB
Text
Raw Normal View History

2019-06-22 20:34:07 +00:00
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:23:9
2019-06-19 03:22:51 +00:00
|
2019-06-25 01:28:46 +00:00
LL | Err(err)?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^ help: try: `return Err(err)`
2019-06-19 03:22:51 +00:00
|
2020-01-31 19:21:10 +00:00
note: the lint level is defined here
--> $DIR/try_err.rs:4: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
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:33:9
2019-06-19 03:22:51 +00:00
|
2019-06-25 01:28:46 +00:00
LL | Err(err)?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^ help: try: `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
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:53:17
2019-06-19 03:22:51 +00:00
|
2019-06-25 01:28:46 +00:00
LL | Err(err)?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^ help: try: `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
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:72:17
2019-06-19 03:22:51 +00:00
|
2019-06-25 01:28:46 +00:00
LL | Err(err)?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^ help: try: `return Err(err.into())`
2019-06-19 03:22:51 +00:00
2019-08-08 12:33:34 +00:00
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:92:23
|
LL | Err(_) => Err(1)?,
2023-07-01 11:08:01 +00:00
| ^^^^^^^ help: try: `return Err(1)`
|
= note: this error originates in the macro `__inline_mac_fn_calling_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:99:23
|
LL | Err(_) => Err(inline!(1))?,
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^ help: try: `return Err(inline!(1))`
|
= note: this error originates in the macro `__inline_mac_fn_calling_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:126:9
2019-08-08 12:33:34 +00:00
|
LL | Err(inline!(inline!(String::from("aasdfasdfasdfa"))))?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `return Err(inline!(inline!(String::from("aasdfasdfasdfa"))))`
2019-08-08 12:33:34 +00:00
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:133:9
|
LL | Err(io::ErrorKind::WriteZero)?
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `return Poll::Ready(Err(io::ErrorKind::WriteZero.into()))`
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:135:9
|
LL | Err(io::Error::new(io::ErrorKind::InvalidInput, "error"))?
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `return Poll::Ready(Err(io::Error::new(io::ErrorKind::InvalidInput, "error")))`
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:143:9
|
LL | Err(io::ErrorKind::NotFound)?
2023-07-01 11:08:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `return Poll::Ready(Some(Err(io::ErrorKind::NotFound.into())))`
error: returning an `Err(_)` with the `?` operator
2023-06-26 05:44:17 +00:00
--> $DIR/try_err.rs:152:16
|
LL | return Err(42)?;
2023-07-01 11:08:01 +00:00
| ^^^^^^^^ help: try: `Err(42)`
error: aborting due to 11 previous errors
2019-06-19 03:22:51 +00:00