2023-03-03 14:54:56 +01:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
|
|
|
#![allow(nonstandard_style)]
|
|
|
|
|
|
|
|
/// [`u32::MAX`]
|
2023-03-24 14:50:12 +01:00
|
|
|
//~^ ERROR both an associated constant and a primitive type
|
2023-03-03 14:54:56 +01:00
|
|
|
pub mod u32 {
|
|
|
|
pub use std::primitive::u32 as MAX;
|
|
|
|
}
|