]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/modulo_one.rs
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / modulo_one.rs
index 496c1c60d5f11f87bd0bbf482770dc67635addf6..678a312f66e53af9ed72aeb8765c9db6cbbb53e1 100644 (file)
@@ -1,9 +1,23 @@
-#![feature(plugin)]
-#![plugin(clippy)]
-#![deny(modulo_one)]
-#![allow(no_effect, unnecessary_operation)]
+#![warn(clippy::modulo_one)]
+#![allow(clippy::no_effect, clippy::unnecessary_operation)]
+
+static STATIC_ONE: usize = 2 - 1;
+static STATIC_NEG_ONE: i64 = 1 - 2;
 
 fn main() {
-    10 % 1; //~ERROR any number modulo 1 will be 0
+    10 % 1;
+    10 % -1;
     10 % 2;
+    i32::MIN % (-1); // also caught by rustc
+
+    const ONE: u32 = 1 * 1;
+    const NEG_ONE: i64 = 1 - 2;
+    const INT_MIN: i64 = i64::MIN;
+
+    2 % ONE;
+    5 % STATIC_ONE; // NOT caught by lint
+    2 % NEG_ONE;
+    5 % STATIC_NEG_ONE; // NOT caught by lint
+    INT_MIN % NEG_ONE; // also caught by rustc
+    INT_MIN % STATIC_NEG_ONE; // ONLY caught by rustc
 }