Closed
Description
Running rustdoc on the following code results in a documentation that mentions SomeTypeWithLongName
instead of SomeType
.
mod second {
pub struct SomeTypeWithLongName;
}
pub use second::{SomeTypeWithLongName as SomeType};
I tested this on current nightly (rustc 1.11.0-nightly (ad7fe6521 2016-06-23)
) and 1.9.0 stable.
(I've seen that there are a couple of issues with reexports in rustdoc already reported, but I haven't found this one.)