mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 11:51:31 +03:00
57ca36861d
The ordering in item tables was flipped in 3030cbea95, making it
inconsistent with the ordering in method signatures.
Compare these:
https://github.com/rust-lang/rust/blob/c8e6a9e8b6251bbc8276cb78cabe1998deecbed7/src/librustdoc/html/render/print_item.rs#L455-L459
https://github.com/rust-lang/rust/blob/c8e6a9e8b6251bbc8276cb78cabe1998deecbed7/src/librustdoc/html/format.rs#L903-L908
17 lines
307 B
Rust
17 lines
307 B
Rust
#![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::*;
|