We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
rustdoc
With no link to Baz, and the link to bar leading to a blank page.
Baz
bar
Changing pub use foo::*; to pub use foo::Baz; still produce a wrong ouptut:
pub use foo::*;
pub use foo::Baz;
$ rustdoc --version rustdoc 1.3.0 (9a92aaf19 2015-09-15) $ rustc --version rustc 1.3.0 (9a92aaf19 2015-09-15)
The text was updated successfully, but these errors were encountered:
cc #24305
Sorry, something went wrong.
Works correctly on nightly:
@Luthaf could you try on nightly and confirm @eljay 's findings?
I confirm this is fixed on nightly!
No branches or pull requests
Using the following code,
rustdoc
produce this output:With no link to
Baz
, and the link tobar
leading to a blank page.Changing
pub use foo::*;
topub use foo::Baz;
still produce a wrong ouptut:Meta:
The text was updated successfully, but these errors were encountered: