rust/tests/rustdoc/namespaces.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
377 B
Rust
Raw Permalink Normal View History

2018-06-09 02:38:10 +08:00
// issue #34843: rustdoc prioritises documenting reexports from the type namespace
mod inner {
pub mod sync {
pub struct SomeStruct;
}
pub fn sync() {}
}
//@ has namespaces/sync/index.html
//@ has namespaces/fn.sync.html
//@ has namespaces/index.html '//a/@href' 'sync/index.html'
//@ has - '//a/@href' 'fn.sync.html'
2018-06-09 02:38:10 +08:00
#[doc(inline)]
pub use inner::sync;