]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/arithmetic.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / arithmetic.rs
index 61a601468fb7d42d790118446cfd316b588e602a..00de38039a731655bdc14e6454a0a800a14e5967 100644 (file)
@@ -7,12 +7,16 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-
-
-
 #![warn(clippy::integer_arithmetic, clippy::float_arithmetic)]
-#![allow(unused, clippy::shadow_reuse, clippy::shadow_unrelated, clippy::no_effect, clippy::unnecessary_operation)]
+#![allow(
+    unused,
+    clippy::shadow_reuse,
+    clippy::shadow_unrelated,
+    clippy::no_effect,
+    clippy::unnecessary_operation
+)]
+
+#[rustfmt::skip]
 fn main() {
     let i = 1i32;
     1 + i;