rust-clippy/tests/ui/empty_docs.rs
2024-02-25 22:33:16 +04:00

67 lines
929 B
Rust

#![allow(unused)]
#![warn(clippy::empty_docs)]
mod outer {
//!
/// this is a struct
struct Bananas {
/// count
count: usize,
}
///
enum Warn {
///
A,
B,
}
enum DontWarn {
/// i
A,
B,
}
#[doc = ""]
fn warn_about_this() {}
#[doc = ""]
#[doc = ""]
fn this_doesn_warn() {}
#[doc = "a fine function"]
fn this_is_fine() {}
///
mod inner {
///
fn dont_warn_inner_outer() {
//!w
}
fn this_is_ok() {
//!
//! inside the function
}
fn warn() {
/*! */
}
fn dont_warn() {
/*! dont warn me */
}
trait NoDoc {
///
fn some() {}
}
}
union Unite {
/// lint y
x: i32,
///
y: i32,
}
}