blob: 6f115e78e147b38cf52de11c24bc98084f3838a5 (
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
|
#[deny(unused_imports)]
mod rank {
pub use self::Professor::*;
//~^ ERROR glob import doesn't reexport anything
pub use self::Lieutenant::{JuniorGrade, Full};
//~^ ERROR `JuniorGrade` is private, and cannot be re-exported
//~| ERROR `Full` is private, and cannot be re-exported
pub use self::PettyOfficer::*;
//~^ ERROR glob import doesn't reexport anything
pub use self::Crewman::*;
//~^ ERROR glob import doesn't reexport anything
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() {}
|