-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
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.regression-untriagedUntriaged performance or correctness regression.Untriaged performance or correctness regression.
Description
// src/lib.rs
mod thing {
pub use core::sync::atomic::AtomicU8; // anything from a dependency, type namespace
#[allow(non_upper_case_globals)]
pub const AtomicU8: () = (); // value namespace
}
pub use crate::thing::AtomicU8;
cargo +nightly-2022-12-02 doc |
cargo +nightly-2022-12-03 doc |
---|---|
![]() |
![]() |
I believe the one on the left is what I would consider the correct rendering, and the one on the right is a regression.
The regression is in nightly-2022-12-03, specifically #104963 according to bisect, which makes sense. Mentioning @petrochenkov @cjgillot in case an obvious cause stands out to either of you.
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.regression-untriagedUntriaged performance or correctness regression.Untriaged performance or correctness regression.