mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
11 lines
180 B
Rust
11 lines
180 B
Rust
![]() |
mod private {
|
||
|
pub struct Foo {}
|
||
|
}
|
||
|
|
||
|
// @has hidden_use/index.html
|
||
|
// @!has - 'private'
|
||
|
// @!has - 'Foo'
|
||
|
// @!has hidden_use/struct.Foo.html
|
||
|
#[doc(hidden)]
|
||
|
pub use private::Foo;
|