blob: 85701ff13c021fb729b70e93b04b938990d34570 [file] [edit]
#![deny(rustdoc::broken_intra_doc_links)]
//~^ NOTE the lint level is defined here
/// [Self::a::b]
//~^ ERROR unresolved link to `Self::a::b`
//~| NOTE the struct `MyStruct` has no field or associated item named `a`
pub struct MyStruct;
/// [Self::a::b]
//~^ ERROR unresolved link to `Self::a::b`
//~| NOTE the type alias `MyAlias` has no associated item named `a`
pub type MyAlias = MyStruct;