-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #80762 - petrochenkov:visclean, r=varkor
resolve: Cleanup visibility resolution for enum variants and trait items by always delegating it to `fn resolve_visibility`. Also remove some special treatment of visibility on enum variants and trait items remaining from pre-`pub(restricted)` times.
- Loading branch information
Showing
8 changed files
with
118 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
src/test/ui/privacy/issue-46209-private-enum-variant-reexport.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 29 additions & 22 deletions
51
src/test/ui/privacy/issue-46209-private-enum-variant-reexport.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,51 @@ | ||
error: variant `JuniorGrade` is private and cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:6:32 | ||
error[E0364]: `JuniorGrade` is private, and cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:7:32 | ||
| | ||
LL | pub use self::Lieutenant::{JuniorGrade, Full}; | ||
| ^^^^^^^^^^^ | ||
| | ||
note: consider marking `JuniorGrade` as `pub` in the imported module | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:7:32 | ||
| | ||
LL | pub use self::Lieutenant::{JuniorGrade, Full}; | ||
| ^^^^^^^^^^^ | ||
... | ||
LL | enum Lieutenant { | ||
| --------------- help: consider making the enum public: `pub enum Lieutenant` | ||
|
||
error: variant `Full` is private and cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:6:45 | ||
error[E0364]: `Full` is private, and cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:7:45 | ||
| | ||
LL | pub use self::Lieutenant::{JuniorGrade, Full}; | ||
| ^^^^ | ||
| | ||
note: consider marking `Full` as `pub` in the imported module | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:7:45 | ||
| | ||
LL | pub use self::Lieutenant::{JuniorGrade, Full}; | ||
| ^^^^ | ||
|
||
error: enum is private and its variants cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:4:13 | ||
error: glob import doesn't reexport anything because no candidate is public enough | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:5:13 | ||
| | ||
LL | pub use self::Professor::*; | ||
| ^^^^^^^^^^^^^^^^^^ | ||
... | ||
LL | enum Professor { | ||
| -------------- help: consider making the enum public: `pub enum Professor` | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:3:8 | ||
| | ||
LL | #[deny(unused_imports)] | ||
| ^^^^^^^^^^^^^^ | ||
|
||
error: enum is private and its variants cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:9:13 | ||
error: glob import doesn't reexport anything because no candidate is public enough | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:10:13 | ||
| | ||
LL | pub use self::PettyOfficer::*; | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
... | ||
LL | pub(in rank) enum PettyOfficer { | ||
| ------------------------------ help: consider making the enum public: `pub enum PettyOfficer` | ||
|
||
error: enum is private and its variants cannot be re-exported | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:11:13 | ||
error: glob import doesn't reexport anything because no candidate is public enough | ||
--> $DIR/issue-46209-private-enum-variant-reexport.rs:12:13 | ||
| | ||
LL | pub use self::Crewman::*; | ||
| ^^^^^^^^^^^^^^^^ | ||
... | ||
LL | crate enum Crewman { | ||
| ------------------ help: consider making the enum public: `pub enum Crewman` | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0364`. |
Oops, something went wrong.