summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/search-index.rs
blob: f1b78f17277d1348656754e3f4570091be7cc34f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![crate_name = "rustdoc_test"]

use std::ops::Deref;

// @has search-index.js Foo
pub use private::Foo;

mod private {
    pub struct Foo;
    impl Foo {
        pub fn test_method() {} // @has - test_method
        fn priv_method() {} // @!has - priv_method
    }

    pub trait PrivateTrait {
        fn trait_method(&self) {} // @!has - priv_method
    }
}

pub struct Bar;

impl Deref for Bar {
    // @!has search-index.js Target
    type Target = Bar;
    fn deref(&self) -> &Bar { self }
}