blob: 6afcad4f92117373d52db0e1e3376125ea2020a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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
}
|