Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
rustdoc-json
/
impls
/
pub_for_hidden_private.rs
blob: eb89219022c77dd05beaf4b2969b5badb9368775 [
file
]
//@ compile-flags: --document-private-items --document-hidden-items
pub
trait
TheTrait
{}
#[
doc
(
hidden
)]
struct
Value
{}
//@ has '$.index[?(@.docs=="THE IMPL")]'
/// THE IMPL
impl
TheTrait
for
Value
{}