2016-06-27 22:10:13 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod hidden {
|
|
|
|
pub struct Foo;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn this_should_be_hidden() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn this_should_be_hidden() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/struct.Foo.html
|
|
|
|
//@ !hasraw - 'Methods'
|
|
|
|
//@ !has - '//code' 'impl Foo'
|
|
|
|
//@ !hasraw - 'this_should_be_hidden'
|
2016-06-27 22:10:13 +00:00
|
|
|
pub use hidden::Foo;
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/struct.Bar.html
|
|
|
|
//@ !hasraw - 'Methods'
|
|
|
|
//@ !has - '//code' 'impl Bar'
|
|
|
|
//@ !hasraw - 'this_should_be_hidden'
|
2016-06-27 22:10:13 +00:00
|
|
|
pub use hidden::Bar;
|