-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
This code is failing:
pub use crate::bar::Foo;
pub mod bar;
// bar/mod.rs
mod priv_mod;
pub use self::priv_mod::Foo;
// bar/priv_mod.rs
pub struct Foo;
Foo
should be inlined in bar
but isn't. The regression appeared in #108870.
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.