]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/useless_conversion.rs
Rollup merge of #90741 - mbartlett21:patch-4, r=dtolnay
[rust.git] / src / tools / clippy / clippy_lints / src / useless_conversion.rs
index 88f11542072b849e7920c3893fb0bf0ce713ac49..0e4b32541c97785672a65a8e08eb86eda3ee7135 100644 (file)
@@ -28,6 +28,7 @@
     /// // Good
     /// let s: String = format!("hello");
     /// ```
+    #[clippy::version = "1.45.0"]
     pub USELESS_CONVERSION,
     complexity,
     "calls to `Into`, `TryInto`, `From`, `TryFrom`, or `IntoIter` which perform useless conversions to the same type"