Closed
Description
Consider
extern crate innercrate; //defines only one public item `from_inner_crate`
pub use inner::{inner_fn, from_inner_crate};
/// Top level documentation
pub fn top_level(){}
pub mod inner {
pub use innercrate::from_inner_crate;
/// Defined inside inner module
pub fn inner_fn(){}
}
Documentation renders from_inner_crate as if it was defined at the top level of crate rather than showing it as an reexport from inner module.