2023-07-18 10:25:58 -05:00
|
|
|
error: exported type named `Error` that implements `Error`
|
|
|
|
--> $DIR/error_impl_error.rs:7:16
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
2023-07-06 21:58:11 -05:00
|
|
|
LL | pub struct Error;
|
|
|
|
| ^^^^^
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
note: `Error` was implemented here
|
2023-07-18 10:25:58 -05:00
|
|
|
--> $DIR/error_impl_error.rs:15:5
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
LL | impl std::error::Error for Error {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
= note: `-D clippy::error-impl-error` implied by `-D warnings`
|
|
|
|
|
2023-07-18 10:25:58 -05:00
|
|
|
error: exported type named `Error` that implements `Error`
|
|
|
|
--> $DIR/error_impl_error.rs:20:21
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
2023-07-18 10:25:58 -05:00
|
|
|
LL | pub(super) enum Error {}
|
|
|
|
| ^^^^^
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
note: `Error` was implemented here
|
2023-07-18 10:25:58 -05:00
|
|
|
--> $DIR/error_impl_error.rs:28:5
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
LL | impl std::error::Error for Error {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-07-18 10:25:58 -05:00
|
|
|
error: exported type named `Error` that implements `Error`
|
|
|
|
--> $DIR/error_impl_error.rs:32:15
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
2023-07-06 21:58:11 -05:00
|
|
|
LL | pub union Error {
|
|
|
|
| ^^^^^
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
note: `Error` was implemented here
|
2023-07-18 10:25:58 -05:00
|
|
|
--> $DIR/error_impl_error.rs:49:5
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
|
LL | impl std::error::Error for Error {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2023-07-18 10:25:58 -05:00
|
|
|
error: exported type alias named `Error` that implements `Error`
|
|
|
|
--> $DIR/error_impl_error.rs:53:14
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
2023-07-06 21:58:11 -05:00
|
|
|
LL | pub type Error = std::fmt::Error;
|
|
|
|
| ^^^^^
|
2023-07-04 13:36:56 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|