blob: a59b48232a347d6899020aec81a6311c05c99140 [file] [log] [blame] [edit]
// https://github.com/rust-lang/rust/issues/83375
#![crate_name = "foo"]
pub mod sub {
pub struct Item;
pub mod prelude {
pub use super::Item;
}
}
#[doc(inline)]
pub use sub::*;
//@ 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 {}