move implied_bounds_in_impls to complexity

This commit is contained in:
y21 2023-11-25 13:54:37 +01:00
parent 3664d6328d
commit 5689a86fb8

View File

@ -45,7 +45,7 @@ declare_clippy_lint! {
/// ``` /// ```
#[clippy::version = "1.74.0"] #[clippy::version = "1.74.0"]
pub IMPLIED_BOUNDS_IN_IMPLS, pub IMPLIED_BOUNDS_IN_IMPLS,
nursery, complexity,
"specifying bounds that are implied by other bounds in `impl Trait` type" "specifying bounds that are implied by other bounds in `impl Trait` type"
} }
declare_lint_pass!(ImpliedBoundsInImpls => [IMPLIED_BOUNDS_IN_IMPLS]); declare_lint_pass!(ImpliedBoundsInImpls => [IMPLIED_BOUNDS_IN_IMPLS]);