clippy: Enable needless_doctest_main rule

This commit is contained in:
Tetsuharu Ohzeki 2024-02-09 23:20:45 +09:00
parent 3365e50180
commit a3e60e7f7a
2 changed files with 4 additions and 7 deletions

View File

@ -170,7 +170,6 @@ useless_asref = "allow"
## Following lints should be tackled at some point
borrowed_box = "allow"
derived_hash_with_manual_eq = "allow"
needless_doctest_main = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
wrong_self_convention = "allow"

View File

@ -1,10 +1,8 @@
//! Implementation of "implicit drop" inlay hints:
//! ```no_run
//! fn main() {
//! let x = vec![2];
//! if some_condition() {
//! /* drop(x) */return;
//! }
//! ```ignore
//! let x = vec![2];
//! if some_condition() {
//! /* drop(x) */return;
//! }
//! ```
use hir::{