about summary refs log tree commit diff
path: root/tests/rustdoc/inline_local/hidden-use.rs
blob: 35bce2932f90912cf3331dbe73fab2357a0acafd (plain)
1
2
3
4
5
6
7
8
9
10
mod private {
    pub struct Foo {}
}

//@ has hidden_use/index.html
//@ !hasraw - 'private'
//@ !hasraw - 'Foo'
//@ !has hidden_use/struct.Foo.html
#[doc(hidden)]
pub use private::Foo;