]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/functions.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / functions.rs
index 5521870eaecf761af9b0f50bdbdd941d63aaa551..18149bfbc3fe0c4da555de4ff6edb0ceafbebfad 100644 (file)
@@ -1,6 +1,6 @@
 #![warn(clippy::all)]
-#![allow(dead_code)]
-#![allow(unused_unsafe, clippy::missing_safety_doc)]
+#![allow(dead_code, unused_unsafe)]
+#![allow(clippy::missing_safety_doc, clippy::uninlined_format_args)]
 
 // TOO_MANY_ARGUMENTS
 fn good(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool) {}