]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/clippy_lints/src/verbose_file_reads.rs
Rollup merge of #91562 - dtolnay:asyncspace, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / clippy_lints / src / verbose_file_reads.rs
index e07c12f4f16159d16abc6814ca96998d16f15feb..ebdaff1e676b7e187511536f6dca84bc38f58804 100644 (file)
@@ -27,6 +27,7 @@
     /// # use std::fs;
     /// let mut bytes = fs::read("foo.txt").unwrap();
     /// ```
+    #[clippy::version = "1.44.0"]
     pub VERBOSE_FILE_READS,
     restriction,
     "use of `File::read_to_end` or `File::read_to_string`"