blob: 6e99f4365a78d0dcc580d1f8a09da3042b7b87c5 [file] [log] [blame] [edit]
#![deny(rustdoc::broken_intra_doc_links)]
#![allow(nonstandard_style)]
pub trait Trait {
type MAX;
}
/// [`u32::MAX`]
//~^ ERROR both an associated constant and an associated type
impl Trait for u32 {
type MAX = u32;
}