]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/large_stack_arrays.rs
Rollup merge of #91562 - dtolnay:asyncspace, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / clippy_lints / src / large_stack_arrays.rs
index bbb6c1f902ce077e7fcfc6f168021f71fb356cde..1cc2c28c04ad4dfb0c351091ec550ed753cb0826 100644 (file)
@@ -19,6 +19,7 @@
     /// ```rust,ignore
     /// let a = [0u32; 1_000_000];
     /// ```
+    #[clippy::version = "1.41.0"]
     pub LARGE_STACK_ARRAYS,
     pedantic,
     "allocating large arrays on stack may cause stack overflow"