rust/tests/rustdoc/pub-method.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
412 B
Rust
Raw Normal View History

2017-10-18 01:54:46 +08:00
//@ compile-flags: --document-private-items
2017-09-14 06:20:04 +08:00
#![crate_name = "foo"]
//@ has foo/fn.bar.html
//@ has - '//pre[@class="rust item-decl"]' 'pub fn bar() -> '
2017-09-14 06:20:04 +08:00
/// foo
pub fn bar() -> usize {
2
}
//@ has foo/struct.Foo.html
//@ has - '//*[@class="method"]' 'pub fn new()'
//@ has - '//*[@class="method"]' 'fn not_pub()'
2017-09-14 06:20:04 +08:00
pub struct Foo(usize);
impl Foo {
pub fn new() -> Foo { Foo(0) }
fn not_pub() {}
}