summary refs log tree commit diff
path: root/tests/rustdoc-json/structs/tuple_pub_priv.rs
blob: 11af26e6ea3a73d8a25af2d8b7c98f652cdec027 (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