about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/error_impl_error.stderr
blob: 087d43d1d083bbac1f0b76b2a496c987ebb13bd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: exported type named `Error` that implements `Error`
  --> tests/ui/error_impl_error.rs:7:16
   |
LL |     pub struct Error;
   |                ^^^^^
   |
note: `Error` was implemented here
  --> tests/ui/error_impl_error.rs:16:5
   |
LL |     impl std::error::Error for Error {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: `-D clippy::error-impl-error` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::error_impl_error)]`

error: exported type named `Error` that implements `Error`
  --> tests/ui/error_impl_error.rs:21:21
   |
LL |     pub(super) enum Error {}
   |                     ^^^^^
   |
note: `Error` was implemented here
  --> tests/ui/error_impl_error.rs:30:5
   |
LL |     impl std::error::Error for Error {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: exported type named `Error` that implements `Error`
  --> tests/ui/error_impl_error.rs:34:15
   |
LL |     pub union Error {
   |               ^^^^^
   |
note: `Error` was implemented here
  --> tests/ui/error_impl_error.rs:52:5
   |
LL |     impl std::error::Error for Error {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: exported type alias named `Error` that implements `Error`
  --> tests/ui/error_impl_error.rs:56:14
   |
LL |     pub type Error = std::fmt::Error;
   |              ^^^^^

error: aborting due to 4 previous errors