about summary refs log tree commit diff
path: root/tests/rustdoc/reexport/overlapping-reexport-105735.rs
blob: d1b5c0b6749ad3e5311eba6c85ff70e994b97b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Regression test to ensure that both `AtomicU8` items are displayed but not the re-export.
// https://github.com/rust-lang/rust/issues/105735

#![crate_name = "foo"]
#![no_std]

//@ has 'foo/index.html'
//@ has - '//dt/a[@class="struct"]' 'AtomicU8'
//@ has - '//dt/a[@class="constant"]' 'AtomicU8'
// 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'

mod thing {
    pub use core::sync::atomic::AtomicU8;

    #[allow(non_upper_case_globals)]
    pub const AtomicU8: () = ();
}

pub use crate::thing::AtomicU8;