summary refs log tree commit diff
path: root/src/test/ui/privacy/issue-46209-private-enum-variant-reexport.rs
blob: d54c993147938b565ce7769496794df5d9fd2abf (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
#![feature(crate_visibility_modifier)]

mod rank {
    pub use self::Professor::*;
    //~^ ERROR enum is private and its variants cannot be re-exported
    pub use self::Lieutenant::{JuniorGrade, Full};
    //~^ ERROR variant `JuniorGrade` is private and cannot be re-exported
    //~| ERROR variant `Full` is private and cannot be re-exported
    pub use self::PettyOfficer::*;
    //~^ ERROR enum is private and its variants cannot be re-exported
    pub use self::Crewman::*;
    //~^ ERROR enum is private and its variants cannot be re-exported

    enum Professor {
        Adjunct,
        Assistant,
        Associate,
        Full
    }

    enum Lieutenant {
        JuniorGrade,
        Full,
    }

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

    crate enum Crewman {
        Recruit,
        Apprentice,
        Full
    }

}

fn main() {}