summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/issue-46209-private-enum-variant-reexport.rs
blob: 653dcab577148e6fe80a0e7163288eb7f9ba8462 (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
#[deny(unused_imports)]
mod rank {
    pub use self::Professor::*;
    //~^ ERROR glob import doesn't reexport anything
    //~| ERROR unused import: `self::Professor::*`
    pub use self::Lieutenant::{JuniorGrade, Full};
    //~^ ERROR `JuniorGrade` is private, and cannot be re-exported
    //~| ERROR `Full` is private, and cannot be re-exported
    //~| ERROR unused imports: `Full`, `JuniorGrade`
    pub use self::PettyOfficer::*;
    //~^ ERROR glob import doesn't reexport anything
    //~| ERROR unused import: `self::PettyOfficer::*`
    pub use self::Crewman::*;
    //~^ ERROR glob import doesn't reexport anything
    //~| ERROR unused import: `self::Crewman::*`

    enum Professor {
        Adjunct,
        Assistant,
        Associate,
        Full
    }

    enum Lieutenant {
        JuniorGrade,
        Full,
    }

    pub(in rank) enum PettyOfficer {
        SecondClass,
        FirstClass,
        Chief,
        MasterChief
    }

    pub(crate) enum Crewman {
        Recruit,
        Apprentice,
        Full
    }

}

fn main() {}