2024-07-22 13:12:38 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
//@ has 'foo/index.html'
|
2024-07-24 15:16:08 -05:00
|
|
|
//@ has - '//section[@id="rustdoc-toc"]/h3' 'Crate Items'
|
2024-07-22 13:12:38 -05:00
|
|
|
|
|
|
|
//@ has 'foo/bar/index.html'
|
2024-07-24 15:16:08 -05:00
|
|
|
//@ has - '//section[@id="rustdoc-toc"]/h3' 'Module Items'
|
2024-07-22 13:12:38 -05:00
|
|
|
pub mod bar {
|
|
|
|
//@ has 'foo/bar/struct.Baz.html'
|
2024-07-24 15:16:08 -05:00
|
|
|
//@ !has - '//section[@id="rustdoc-toc"]/h3' 'Module Items'
|
2024-07-22 13:12:38 -05:00
|
|
|
pub struct Baz;
|
|
|
|
}
|
|
|
|
|
|
|
|
//@ has 'foo/baz/index.html'
|
2024-07-24 15:16:08 -05:00
|
|
|
//@ !has - '//section[@id="rustdoc-toc"]/h3' 'Module Items'
|
2024-07-22 13:12:38 -05:00
|
|
|
pub mod baz {}
|