Sign in
rust
/
rust
/
69dae5941ed4a9eb0290dbf0ce4766bf64ad3d49
/
.
/
tests
/
rustdoc-html
/
inline_local
/
hidden-use.rs
blob: 35bce2932f90912cf3331dbe73fab2357a0acafd [
file
]
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
;