- Rename `broken_intra_doc_links` to `rustdoc::broken_intra_doc_links` - Ensure that the old lint names still work and give deprecation errors - Register lints even when running doctests Otherwise, all `rustdoc::` lints would be ignored. - Register all existing lints as removed This unfortunately doesn't work with `register_renamed` because tool lints have not yet been registered when rustc is running. For similar reasons, `check_backwards_compat` doesn't work either. Call `register_removed` directly instead. - Fix fallout + Rustdoc lints for compiler/ + Rustdoc lints for library/ Note that this does *not* suggest `rustdoc::broken_intra_doc_links` for `rustdoc::intra_doc_link_resolution_failure`, since there was no time when the latter was valid.
72 lines
1.0 KiB
Rust
72 lines
1.0 KiB
Rust
#![deny(missing_docs)]
|
|
#![deny(rustdoc::missing_doc_code_examples)]
|
|
|
|
//! crate level doc
|
|
//! ```
|
|
//! println!("hello"):
|
|
//! ```
|
|
|
|
|
|
/// doc
|
|
///
|
|
/// ```
|
|
/// println!("hello");
|
|
/// ```
|
|
fn test() {
|
|
}
|
|
|
|
#[allow(missing_docs)]
|
|
mod module1 { //~ ERROR
|
|
}
|
|
|
|
#[allow(rustdoc::missing_doc_code_examples)]
|
|
/// doc
|
|
mod module2 {
|
|
|
|
/// doc
|
|
pub fn test() {}
|
|
}
|
|
|
|
/// doc
|
|
///
|
|
/// ```
|
|
/// println!("hello");
|
|
/// ```
|
|
pub mod module3 {
|
|
|
|
/// doc
|
|
//~^ ERROR
|
|
pub fn test() {}
|
|
}
|
|
|
|
/// Doc, but no code example and it's fine!
|
|
pub const Const: u32 = 0;
|
|
/// Doc, but no code example and it's fine!
|
|
pub static Static: u32 = 0;
|
|
/// Doc, but no code example and it's fine!
|
|
pub type Type = u32;
|
|
|
|
/// Doc
|
|
//~^ ERROR
|
|
pub struct Struct {
|
|
/// Doc, but no code example and it's fine!
|
|
pub field: u32,
|
|
}
|
|
|
|
/// Doc
|
|
//~^ ERROR
|
|
pub enum Enum {
|
|
/// Doc, but no code example and it's fine!
|
|
X,
|
|
}
|
|
|
|
/// Doc
|
|
//~^ ERROR
|
|
#[repr(C)]
|
|
union Union {
|
|
/// Doc, but no code example and it's fine!
|
|
a: i32,
|
|
/// Doc, but no code example and it's fine!
|
|
b: f32,
|
|
}
|