about summary refs log tree commit diff
path: root/tests/rustdoc-json/impls/pub_for_hidden_private.rs
blob: 261ffbfeb4a4c15b903d01622f626daf18dba484 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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 {}