Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
rustdoc-json
/
reexport
/
reexport_of_hidden.rs
blob: 119e699d81568272b49028c9d8cda9905c1c8e40 [
file
] [
log
] [
blame
]
//@ 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
;