Open
Description
Given crates a
:
/// (doc in a)
pub fn foo() {}
b
:
/// (doc in b)
#[doc(inline)]
pub use a::foo;
and c
:
/// (doc in master crate)
#[doc(inline)]
pub use b::foo;
The resulting rustdoc output for c
omits documentation added in b
:
I would expect the docs from all crates to be included.
Source for reproduction
Related
#84619
#89020
@rustbot label +A-cross-crate-reexports +T-rustdoc