summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/int_plus_one.fixed
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tools/clippy/tests/ui/int_plus_one.fixed17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/int_plus_one.fixed b/src/tools/clippy/tests/ui/int_plus_one.fixed
new file mode 100644
index 000000000..642830f24
--- /dev/null
+++ b/src/tools/clippy/tests/ui/int_plus_one.fixed
@@ -0,0 +1,17 @@
+// run-rustfix
+
+#[allow(clippy::no_effect, clippy::unnecessary_operation)]
+#[warn(clippy::int_plus_one)]
+fn main() {
+ let x = 1i32;
+ let y = 0i32;
+
+ let _ = x > y;
+ let _ = y < x;
+
+ let _ = x > y;
+ let _ = y < x;
+
+ let _ = x > y; // should be ok
+ let _ = y < x; // should be ok
+}