-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Closed
Labels
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
Using the following code,
mod foo {
mod bar {
/// the Baz struct
pub struct Baz;
}
pub use self::bar::Baz;
}
pub use foo::*;rustdoc produce this output:
With no link to Baz, and the link to bar leading to a blank page.
Changing pub use foo::*; to pub use foo::Baz; still produce a wrong ouptut:
Meta:
$ rustdoc --version
rustdoc 1.3.0 (9a92aaf19 2015-09-15)
$ rustc --version
rustc 1.3.0 (9a92aaf19 2015-09-15)
Metadata
Metadata
Assignees
Labels
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.

