]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/erasing_op.rs
Rollup merge of #91562 - dtolnay:asyncspace, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / clippy_lints / src / erasing_op.rs
index d0944c37cf5f76b42948e55fe2e18070fc6681c4..d49cec26be5f02c6933c72e50227b5c8501b05ad 100644 (file)
@@ -21,6 +21,7 @@
     /// 0 * x;
     /// x & 0;
     /// ```
+    #[clippy::version = "pre 1.29.0"]
     pub ERASING_OP,
     correctness,
     "using erasing operations, e.g., `x * 0` or `y & 0`"