2017-10-17 17:54:46 +00:00
|
|
|
// compile-flags: --document-private-items
|
2017-06-11 12:28:45 +00:00
|
|
|
|
|
|
|
// @has 'empty_mod_private/index.html' '//a[@href="foo/index.html"]' 'foo'
|
2022-08-10 20:13:18 +00:00
|
|
|
// @hasraw 'empty_mod_private/sidebar-items.js' 'foo'
|
2017-06-11 12:28:45 +00:00
|
|
|
// @matches 'empty_mod_private/foo/index.html' '//h1' 'Module empty_mod_private::foo'
|
|
|
|
mod foo {}
|
|
|
|
|
|
|
|
// @has 'empty_mod_private/index.html' '//a[@href="bar/index.html"]' 'bar'
|
2022-08-10 20:13:18 +00:00
|
|
|
// @hasraw 'empty_mod_private/sidebar-items.js' 'bar'
|
2017-06-11 12:28:45 +00:00
|
|
|
// @matches 'empty_mod_private/bar/index.html' '//h1' 'Module empty_mod_private::bar'
|
|
|
|
mod bar {
|
|
|
|
// @has 'empty_mod_private/bar/index.html' '//a[@href="baz/index.html"]' 'baz'
|
2022-08-10 20:13:18 +00:00
|
|
|
// @hasraw 'empty_mod_private/bar/sidebar-items.js' 'baz'
|
2017-06-11 12:28:45 +00:00
|
|
|
// @matches 'empty_mod_private/bar/baz/index.html' '//h1' 'Module empty_mod_private::bar::baz'
|
|
|
|
mod baz {}
|
|
|
|
}
|