Closed
Description
openedon Jun 21, 2024
// src/lib.rs
#![doc(hidden)]
#[doc(inline)]
pub use std;
#[doc(inline)]
pub use std::marker;
#[doc(inline)]
pub use std::marker::PhantomData;
Expected: empty documentation, as you would get with no items in the crate, or without #[doc(inline)] on the items.
Actual, as of rustdoc 1.70 through current nightly: the crate std
is shown despite #[doc(hidden)]. The other 2 items are correctly not shown.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment