about summary refs log tree commit diff
diff options
context:
space:
mode:
authory21 <30553356+y21@users.noreply.github.com>2023-06-18 22:27:20 +0200
committery21 <30553356+y21@users.noreply.github.com>2023-06-18 22:27:20 +0200
commit9ab1e8e95c45cbe9cdf657bded08a7d874e48fbd (patch)
tree292e7b3881224e5acb105b0eee1f90b556ae7208
parentc5a9adc2bef3afcaf8bcdb260e218a82911a034e (diff)
downloadrust-9ab1e8e95c45cbe9cdf657bded08a7d874e48fbd.tar.gz
rust-9ab1e8e95c45cbe9cdf657bded08a7d874e48fbd.zip
that was definitely not the right version
-rw-r--r--clippy_lints/src/methods/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/methods/mod.rs b/clippy_lints/src/methods/mod.rs
index e98fe99eac7..255a8cc0a95 100644
--- a/clippy_lints/src/methods/mod.rs
+++ b/clippy_lints/src/methods/mod.rs
@@ -2948,7 +2948,7 @@ declare_clippy_lint! {
     /// assert_eq!((*any_box).type_id(), TypeId::of::<i32>());
     /// //          ^ dereference first, to call `type_id` on `dyn Any`
     /// ```
-    #[clippy::version = "1.47.0"]
+    #[clippy::version = "1.72.0"]
     pub TYPE_ID_ON_BOX,
     suspicious,
     "calling `.type_id()` on `Box<dyn Any>`"