]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/precedence.rs
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / precedence.rs
index 95476dd4f516bdea02f07e21452a06816c009a94..4ef771c314f51e22c1785d3bad5e0f0fc5071bbd 100644 (file)
@@ -1,17 +1,16 @@
-#![feature(tool_lints)]
-
-
-#[warn(clippy::precedence)]
-#[allow(clippy::identity_op)]
-#[allow(clippy::eq_op)]
+// run-rustfix
+#![warn(clippy::precedence)]
+#![allow(unused_must_use, clippy::no_effect, clippy::unnecessary_operation)]
+#![allow(clippy::identity_op)]
+#![allow(clippy::eq_op)]
 
 macro_rules! trip {
-   ($a:expr) => {
-    match $a & 0b1111_1111i8 {
-        0 => println!("a is zero ({})", $a),
-        _ => println!("a is {}", $a),
-    }
-   };
+    ($a:expr) => {
+        match $a & 0b1111_1111u8 {
+            0 => println!("a is zero ({})", $a),
+            _ => println!("a is {}", $a),
+        }
+    };
 }
 
 fn main() {