-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Open
Labels
A-cross-crate-reexportsArea: Documentation that has been re-exported from a different crateArea: Documentation that has been re-exported from a different crateC-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
Reproduction Steps
Create a workspace with two libraries:
foo/src/lib.rs:
pub struct Foo;bar/src/lib.rs:
/// Documentation here
pub use foo::Foo;
pub use foo::*;Archive containing the exact configuration I tested: glob-doc-missing.zip
Expected Outcome
"Documentation here" should appear on the documentation page of bar::Foo.
Actual Output
"Documentation here" appears in the item list of bar but not on the documentation page of bar::Foo.
Version
rustdoc 1.92.0 (ded5c06 2025-12-08)
Additional Details
@rustbot label +A-cross-crate-reexports
Metadata
Metadata
Assignees
Labels
A-cross-crate-reexportsArea: Documentation that has been re-exported from a different crateArea: Documentation that has been re-exported from a different crateC-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.