blob: 5eabf3a09ad10ff663e54430ddd8f77beb4a84f2 [file] [log] [blame] [edit]
// The structure is reachable, but not exported, so rustdoc
// doesn't attempt to request doc link resolutions on it.
//@ check-pass
mod private {
/// [core::str::FromStr]
pub struct ReachableButNotExported;
}
pub fn foo() -> private::ReachableButNotExported {
private::ReachableButNotExported
}