2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::integer_arithmetic, clippy::float_arithmetic)]
|
2021-09-27 17:19:33 -05:00
|
|
|
#![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::op_ref)]
|
2018-12-08 11:56:59 -06:00
|
|
|
|
|
|
|
#[rustfmt::skip]
|
2016-04-29 21:01:47 -05:00
|
|
|
fn main() {
|
2019-09-26 02:47:06 -05:00
|
|
|
let mut i = 1i32;
|
2020-10-26 08:58:22 -05:00
|
|
|
let mut var1 = 0i32;
|
|
|
|
let mut var2 = -1i32;
|
2017-02-08 07:58:07 -06:00
|
|
|
1 + i;
|
|
|
|
i * 2;
|
|
|
|
1 %
|
2016-04-30 10:11:59 -05:00
|
|
|
i / 2; // no error, this is part of the expression in the preceding line
|
2017-02-08 07:58:07 -06:00
|
|
|
i - 2 + 2 - i;
|
2019-01-21 06:59:49 -06:00
|
|
|
-i;
|
2020-04-12 22:11:19 -05:00
|
|
|
i >> 1;
|
|
|
|
i << 1;
|
2019-01-21 06:59:49 -06:00
|
|
|
|
|
|
|
// no error, overflows are checked by `overflowing_literals`
|
|
|
|
-1;
|
|
|
|
-(-1);
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2016-04-29 21:01:47 -05:00
|
|
|
i & 1; // no wrapping
|
2016-05-13 09:43:47 -05:00
|
|
|
i | 1;
|
2016-04-29 21:01:47 -05:00
|
|
|
i ^ 1;
|
2016-05-13 09:43:47 -05:00
|
|
|
|
2019-09-26 02:47:06 -05:00
|
|
|
i += 1;
|
|
|
|
i -= 1;
|
|
|
|
i *= 2;
|
|
|
|
i /= 2;
|
2020-10-26 08:58:22 -05:00
|
|
|
i /= 0;
|
|
|
|
i /= -1;
|
|
|
|
i /= var1;
|
|
|
|
i /= var2;
|
2019-09-26 02:47:06 -05:00
|
|
|
i %= 2;
|
2020-10-26 08:58:22 -05:00
|
|
|
i %= 0;
|
|
|
|
i %= -1;
|
|
|
|
i %= var1;
|
|
|
|
i %= var2;
|
2019-09-26 02:47:06 -05:00
|
|
|
i <<= 3;
|
|
|
|
i >>= 2;
|
2020-04-12 22:11:19 -05:00
|
|
|
|
|
|
|
// no errors
|
2019-09-26 02:47:06 -05:00
|
|
|
i |= 1;
|
|
|
|
i &= 1;
|
|
|
|
i ^= i;
|
|
|
|
|
2018-10-17 23:20:36 -05:00
|
|
|
// No errors for the following items because they are constant expressions
|
|
|
|
enum Foo {
|
|
|
|
Bar = -2,
|
|
|
|
}
|
|
|
|
struct Baz([i32; 1 + 1]);
|
|
|
|
union Qux {
|
|
|
|
field: [i32; 1 + 1],
|
|
|
|
}
|
|
|
|
type Alias = [i32; 1 + 1];
|
|
|
|
|
|
|
|
const FOO: i32 = -2;
|
|
|
|
static BAR: i32 = -2;
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = [0, 0];
|
|
|
|
|
|
|
|
let _: [i32; 1 + 1] = {
|
|
|
|
let a: [i32; 1 + 1] = [0, 0];
|
|
|
|
a
|
|
|
|
};
|
|
|
|
|
|
|
|
trait Trait {
|
|
|
|
const ASSOC: i32 = 1 + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for Foo {
|
|
|
|
const ASSOC: i32 = {
|
|
|
|
let _: [i32; 1 + 1];
|
|
|
|
fn foo() {}
|
|
|
|
1 + 1
|
|
|
|
};
|
|
|
|
}
|
2020-03-17 17:32:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// warn on references as well! (#5328)
|
|
|
|
pub fn int_arith_ref() {
|
|
|
|
3 + &1;
|
|
|
|
&3 + 1;
|
|
|
|
&3 + &1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn foo(x: &i32) -> i32 {
|
|
|
|
let a = 5;
|
|
|
|
a + x
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn bar(x: &i32, y: &i32) -> i32 {
|
|
|
|
x + y
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn baz(x: i32, y: &i32) -> i32 {
|
|
|
|
x + y
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn qux(x: i32, y: i32) -> i32 {
|
|
|
|
(&x + &y)
|
|
|
|
}
|