2021-12-13 23:49:29 -07:00
|
|
|
// compile-flags: --document-private-items
|
2016-11-14 18:24:47 +00:00
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
mod mod1 {
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2016-11-14 18:24:47 +00:00
|
|
|
pub fn public_fn();
|
|
|
|
fn private_fn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use mod1::*;
|
|
|
|
|
|
|
|
// @has foo/index.html
|
2022-08-10 13:13:18 -07:00
|
|
|
// @hasraw - "mod1"
|
|
|
|
// @hasraw - "public_fn"
|
2022-08-12 00:44:07 -04:00
|
|
|
// @!hasraw - "private_fn"
|
2016-11-14 18:24:47 +00:00
|
|
|
// @has foo/fn.public_fn.html
|
|
|
|
// @!has foo/fn.private_fn.html
|
|
|
|
|
|
|
|
// @has foo/mod1/index.html
|
2022-08-10 13:13:18 -07:00
|
|
|
// @hasraw - "public_fn"
|
|
|
|
// @hasraw - "private_fn"
|
2016-11-14 18:24:47 +00:00
|
|
|
// @has foo/mod1/fn.public_fn.html
|
|
|
|
// @has foo/mod1/fn.private_fn.html
|