summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/intra-doc/issue-108653-associated-items-6.rs
blob: 8fde74d0ddb47ea326251c30ec50b2d6e6f5c69e (plain)
1
2
3
4
5
6
7
8
#![deny(rustdoc::broken_intra_doc_links)]
#![allow(nonstandard_style)]

/// [`u32::MAX`]
//~^ ERROR both an associated constant and a primitive type
pub mod u32 {
    pub use std::primitive::u32 as MAX;
}