mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
11 lines
240 B
Rust
11 lines
240 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;
|