summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-83375-multiple-mods-w-same-name-doc-inline.rs
blob: d0960dfef436246d1db5206def4790b291b91925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![crate_name = "foo"]

pub mod sub {
    pub struct Item;

    pub mod prelude {
        pub use super::Item;
    }
}

// @count foo/index.html '//a[@class="mod"][@title="mod foo::prelude"]' 1
// @count foo/prelude/index.html '//div[@class="item-row"]' 0
pub mod prelude {}

#[doc(inline)]
pub use sub::*;