]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/large_const_arrays.rs
Merge commit 'a5d597637dcb78dc73f93561ce474f23d4177c35' into clippyup
[rust.git] / src / tools / clippy / clippy_lints / src / large_const_arrays.rs
index fe6814e35d0ca1da4475f6428eb0c3fcd8186ec9..80260e4cd8315f3c42738bdd19cd0afccd2b1c1c 100644 (file)
@@ -27,6 +27,7 @@
     /// // Good
     /// pub static a = [0u32; 1_000_000];
     /// ```
+    #[clippy::version = "1.44.0"]
     pub LARGE_CONST_ARRAYS,
     perf,
     "large non-scalar const array may cause performance overhead"