2017-10-17 13:54:46 -04:00
|
|
|
// compile-flags: --document-private-items
|
2017-09-14 00:20:04 +02:00
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
// @has foo/fn.bar.html
|
2023-01-30 11:05:12 -07:00
|
|
|
// @has - '//pre[@class="rust item-decl"]' 'pub fn bar() -> '
|
2017-09-14 00:20:04 +02:00
|
|
|
/// foo
|
|
|
|
pub fn bar() -> usize {
|
|
|
|
2
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/struct.Foo.html
|
2023-01-28 16:35:02 -07:00
|
|
|
// @has - '//*[@class="method"]' 'pub fn new()'
|
|
|
|
// @has - '//*[@class="method"]' 'fn not_pub()'
|
2017-09-14 00:20:04 +02:00
|
|
|
pub struct Foo(usize);
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub fn new() -> Foo { Foo(0) }
|
|
|
|
fn not_pub() {}
|
|
|
|
}
|