11 lines
250 B
Rust
11 lines
250 B
Rust
//@ compile-flags: --document-hidden-items
|
|
|
|
//@ has "$.index[*].inner[?(@.use.name=='UsedHidden')]"
|
|
//@ has "$.index[*][?(@.name=='Hidden')]"
|
|
pub mod submodule {
|
|
#[doc(hidden)]
|
|
pub struct Hidden {}
|
|
}
|
|
|
|
pub use submodule::Hidden as UsedHidden;
|