about summary refs log tree commit diff
path: root/tests/rustdoc-json/structs/tuple_pub_priv.rs
blob: b97a17cc46ac2f63fda567fbdb685ded4b0cbf87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Demo(
    i32,
    /// field
    pub i32,
    #[doc(hidden)] i32,
);

//@ set field = "$.index[?(@.docs=='field')].id"

//@ is    "$.index[?(@.name=='Demo')].inner.struct.kind.tuple[0]" null
//@ is    "$.index[?(@.name=='Demo')].inner.struct.kind.tuple[1]" $field
//@ is    "$.index[?(@.name=='Demo')].inner.struct.kind.tuple[2]" null
//@ count "$.index[?(@.name=='Demo')].inner.struct.kind.tuple[*]" 3