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
411 B
Rust
Raw Normal View History

2017-10-17 17:54:46 +00:00
// compile-flags: --document-private-items
2017-09-13 22:20:04 +00:00
#![crate_name = "foo"]
// @has foo/fn.bar.html
// @has - '//pre[@class="rust item-decl"]' 'pub fn bar() -> '
2017-09-13 22:20:04 +00: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-13 22:20:04 +00:00
pub struct Foo(usize);
impl Foo {
pub fn new() -> Foo { Foo(0) }
fn not_pub() {}
}