74e843c833
Stopped being used in CSS with 73d0f7c7b68784f1db0a1f53855c20d118a7e8b0
21 lines
425 B
Rust
21 lines
425 B
Rust
// 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"]' 'pub fn new()'
|
|
// @has - '//*[@class="method"]' 'fn not_pub()'
|
|
pub struct Foo(usize);
|
|
|
|
impl Foo {
|
|
pub fn new() -> Foo { Foo(0) }
|
|
fn not_pub() {}
|
|
}
|