]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/neg_multiply.rs
Move MSRV tests into the lint specific test files
[rust.git] / tests / ui / neg_multiply.rs
index 9abbd417803d6e8641bce4131323e9f11c7c8ae2..581290dc72e43e87fccc68c6b322996a9ee55f1d 100644 (file)
@@ -1,8 +1,7 @@
-#![feature(plugin)]
-
-#![plugin(clippy)]
-#![deny(neg_multiply)]
-#![allow(no_effect, unnecessary_operation)]
+// run-rustfix
+#![warn(clippy::neg_multiply)]
+#![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::precedence)]
+#![allow(unused)]
 
 use std::ops::Mul;
 
@@ -31,6 +30,17 @@ fn main() {
 
     -1 * x;
 
+    100 + x * -1;
+
+    (100 + x) * -1;
+
+    -1 * 17;
+
+    0xcafe | 0xff00 * -1;
+
+    3_usize as i32 * -1;
+    (3_usize as i32) * -1;
+
     -1 * -1; // should be ok
 
     X * -1; // should be ok