about summary refs log tree commit diff
diff options
context:
space:
mode:
authory21 <30553356+y21@users.noreply.github.com>2023-11-25 13:54:37 +0100
committery21 <30553356+y21@users.noreply.github.com>2023-11-25 13:54:37 +0100
commit5689a86fb8a8e33435d60f9e8f5bb760ac0dad80 (patch)
tree3362a904f19acd4e314b1b94954989f0c29594b5
parent3664d6328d12cdb1dc6dd4b226d2c635b7400bcc (diff)
downloadrust-5689a86fb8a8e33435d60f9e8f5bb760ac0dad80.tar.gz
rust-5689a86fb8a8e33435d60f9e8f5bb760ac0dad80.zip
move `implied_bounds_in_impls` to complexity
-rw-r--r--clippy_lints/src/implied_bounds_in_impls.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/implied_bounds_in_impls.rs b/clippy_lints/src/implied_bounds_in_impls.rs
index 232d8eeb11b..a369fa00ea6 100644
--- a/clippy_lints/src/implied_bounds_in_impls.rs
+++ b/clippy_lints/src/implied_bounds_in_impls.rs
@@ -45,7 +45,7 @@ declare_clippy_lint! {
     /// ```
     #[clippy::version = "1.74.0"]
     pub IMPLIED_BOUNDS_IN_IMPLS,
-    nursery,
+    complexity,
     "specifying bounds that are implied by other bounds in `impl Trait` type"
 }
 declare_lint_pass!(ImpliedBoundsInImpls => [IMPLIED_BOUNDS_IN_IMPLS]);