1
1
error[E0364]: `JuniorGrade` is private, and cannot be re-exported
2
- --> $DIR/issue-46209-private-enum-variant-reexport.rs:5 :32
2
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:6 :32
3
3
|
4
4
LL | pub use self::Lieutenant::{JuniorGrade, Full};
5
5
| ^^^^^^^^^^^
6
6
|
7
7
note: consider marking `JuniorGrade` as `pub` in the imported module
8
- --> $DIR/issue-46209-private-enum-variant-reexport.rs:5 :32
8
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:6 :32
9
9
|
10
10
LL | pub use self::Lieutenant::{JuniorGrade, Full};
11
11
| ^^^^^^^^^^^
12
12
13
13
error[E0364]: `Full` is private, and cannot be re-exported
14
- --> $DIR/issue-46209-private-enum-variant-reexport.rs:5 :45
14
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:6 :45
15
15
|
16
16
LL | pub use self::Lieutenant::{JuniorGrade, Full};
17
17
| ^^^^
18
18
|
19
19
note: consider marking `Full` as `pub` in the imported module
20
- --> $DIR/issue-46209-private-enum-variant-reexport.rs:5 :45
20
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:6 :45
21
21
|
22
22
LL | pub use self::Lieutenant::{JuniorGrade, Full};
23
23
| ^^^^
@@ -34,18 +34,42 @@ note: the lint level is defined here
34
34
LL | #[deny(unused_imports)]
35
35
| ^^^^^^^^^^^^^^
36
36
37
+ error: unused import: `self::Professor::*`
38
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:3:13
39
+ |
40
+ LL | pub use self::Professor::*;
41
+ | ^^^^^^^^^^^^^^^^^^
42
+
43
+ error: unused imports: `Full`, `JuniorGrade`
44
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:6:32
45
+ |
46
+ LL | pub use self::Lieutenant::{JuniorGrade, Full};
47
+ | ^^^^^^^^^^^ ^^^^
48
+
37
49
error: glob import doesn't reexport anything because no candidate is public enough
38
- --> $DIR/issue-46209-private-enum-variant-reexport.rs:8 :13
50
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:10 :13
39
51
|
40
52
LL | pub use self::PettyOfficer::*;
41
53
| ^^^^^^^^^^^^^^^^^^^^^
42
54
43
- error: glob import doesn't reexport anything because no candidate is public enough
55
+ error: unused import: `self::PettyOfficer::*`
44
56
--> $DIR/issue-46209-private-enum-variant-reexport.rs:10:13
45
57
|
58
+ LL | pub use self::PettyOfficer::*;
59
+ | ^^^^^^^^^^^^^^^^^^^^^
60
+
61
+ error: glob import doesn't reexport anything because no candidate is public enough
62
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:13:13
63
+ |
64
+ LL | pub use self::Crewman::*;
65
+ | ^^^^^^^^^^^^^^^^
66
+
67
+ error: unused import: `self::Crewman::*`
68
+ --> $DIR/issue-46209-private-enum-variant-reexport.rs:13:13
69
+ |
46
70
LL | pub use self::Crewman::*;
47
71
| ^^^^^^^^^^^^^^^^
48
72
49
- error: aborting due to 5 previous errors
73
+ error: aborting due to 9 previous errors
50
74
51
75
For more information about this error, try `rustc --explain E0364`.
0 commit comments