2016-11-14 12:24:47 -06:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
mod mod1 {
|
2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2016-11-14 12:24:47 -06:00
|
|
|
pub fn public_fn();
|
|
|
|
fn private_fn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use mod1::*;
|
|
|
|
|
|
|
|
// @has foo/index.html
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - "mod1"
|
2022-08-10 15:13:18 -05:00
|
|
|
// @hasraw - "public_fn"
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - "private_fn"
|
2016-11-14 12:24:47 -06:00
|
|
|
// @has foo/fn.public_fn.html
|
|
|
|
// @!has foo/fn.private_fn.html
|
|
|
|
|
|
|
|
// @!has foo/mod1/index.html
|
|
|
|
// @has foo/mod1/fn.public_fn.html
|
|
|
|
// @!has foo/mod1/fn.private_fn.html
|