2024-02-22 06:10:29 -06:00
|
|
|
//@ compile-flags: --document-private-items
|
2017-06-11 07:28:45 -05:00
|
|
|
|
|
|
|
// @has 'empty_mod_private/index.html' '//a[@href="foo/index.html"]' 'foo'
|
2022-08-10 15:13:18 -05:00
|
|
|
// @hasraw 'empty_mod_private/sidebar-items.js' 'foo'
|
2017-06-11 07:28:45 -05: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 15:13:18 -05:00
|
|
|
// @hasraw 'empty_mod_private/sidebar-items.js' 'bar'
|
2017-06-11 07:28:45 -05: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 15:13:18 -05:00
|
|
|
// @hasraw 'empty_mod_private/bar/sidebar-items.js' 'baz'
|
2017-06-11 07:28:45 -05:00
|
|
|
// @matches 'empty_mod_private/bar/baz/index.html' '//h1' 'Module empty_mod_private::bar::baz'
|
|
|
|
mod baz {}
|
|
|
|
}
|