summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/error_impl_error.rs
blob: 05003f7d047ca22dc72fb224eb39ed14e68f635b (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#![allow(unused)]
#![warn(clippy::error_impl_error)]
#![no_main]

pub mod a {
    #[derive(Debug)]
    pub struct Error;
    //~^ ERROR: exported type named `Error` that implements `Error`

    impl std::fmt::Display for Error {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::error::Error for Error {}
}

mod b {
    #[derive(Debug)]
    pub(super) enum Error {}
    //~^ ERROR: exported type named `Error` that implements `Error`

    impl std::fmt::Display for Error {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::error::Error for Error {}
}

pub mod c {
    pub union Error {
        //~^ ERROR: exported type named `Error` that implements `Error`
        a: u32,
        b: u32,
    }

    impl std::fmt::Debug for Error {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::fmt::Display for Error {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::error::Error for Error {}
}

pub mod d {
    pub type Error = std::fmt::Error;
    //~^ ERROR: exported type alias named `Error` that implements `Error`
}

mod e {
    #[derive(Debug)]
    pub(super) struct MyError;

    impl std::fmt::Display for MyError {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::error::Error for MyError {}
}

pub mod f {
    pub type MyError = std::fmt::Error;
}

// Do not lint module-private types

mod g {
    #[derive(Debug)]
    enum Error {}

    impl std::fmt::Display for Error {
        fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            todo!()
        }
    }

    impl std::error::Error for Error {}
}

mod h {
    type Error = std::fmt::Error;
}