blob: 8f9dc4bc945df0e2c4f9a29c22f7ad060513e5d1 (
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
|
#![feature(crate_visibility_modifier)]
#[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
}
crate enum Crewman {
Recruit,
Apprentice,
Full
}
}
fn main() {}
|