rust/tests/rustdoc/overlapping-reexport-105735.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
771 B
Rust
Raw Permalink Normal View History

2023-07-16 21:54:23 +08:00
// Regression test to ensure that both `AtomicU8` items are displayed but not the re-export.
2024-07-13 08:36:21 +08:00
// https://github.com/rust-lang/rust/issues/105735
2023-07-16 21:54:23 +08:00
#![crate_name = "foo"]
#![no_std]
//@ has 'foo/index.html'
//@ has - '//*[@class="item-name"]/a[@class="struct"]' 'AtomicU8'
//@ has - '//*[@class="item-name"]/a[@class="constant"]' 'AtomicU8'
2023-07-16 21:54:23 +08:00
// We also ensure we don't have another item displayed.
//@ count - '//*[@id="main-content"]/*[@class="section-header"]' 2
//@ has - '//*[@id="main-content"]/*[@class="section-header"]' 'Structs'
//@ has - '//*[@id="main-content"]/*[@class="section-header"]' 'Constants'
2023-07-16 21:54:23 +08:00
mod thing {
pub use core::sync::atomic::AtomicU8;
#[allow(non_upper_case_globals)]
pub const AtomicU8: () = ();
}
pub use crate::thing::AtomicU8;