mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
11 lines
252 B
Rust
11 lines
252 B
Rust
![]() |
// compile-flags: --document-hidden-items
|
||
|
|
||
|
// @has "$.index[*].inner[?(@.import.name=='UsedHidden')]"
|
||
|
// @has "$.index[*][?(@.name=='Hidden')]"
|
||
|
pub mod submodule {
|
||
|
#[doc(hidden)]
|
||
|
pub struct Hidden {}
|
||
|
}
|
||
|
|
||
|
pub use submodule::Hidden as UsedHidden;
|