summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/pub-method.rs
blob: 0dca3f672cd3c42ca703a80e9112a2298b82084c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// compile-flags: --document-private-items

#![crate_name = "foo"]

// @has foo/fn.bar.html
// @has - '//div[@class="item-decl"]/pre[@class="rust"]' 'pub fn bar() -> '
/// foo
pub fn bar() -> usize {
    2
}

// @has foo/struct.Foo.html
// @has - '//*[@class="method has-srclink"]' 'pub fn new()'
// @has - '//*[@class="method has-srclink"]' 'fn not_pub()'
pub struct Foo(usize);

impl Foo {
    pub fn new() -> Foo { Foo(0) }
    fn not_pub() {}
}