2015-05-15 16:46:43 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
const ONE : i64 = 1;
|
|
|
|
const NEG_ONE : i64 = -1;
|
|
|
|
const ZERO : i64 = 0;
|
|
|
|
|
2016-12-28 20:04:46 +00:00
|
|
|
#[allow(eq_op, no_effect, unnecessary_operation, double_parens)]
|
2017-05-17 12:19:44 +00:00
|
|
|
#[warn(identity_op)]
|
2015-05-15 16:46:43 +00:00
|
|
|
fn main() {
|
2015-08-11 18:22:20 +00:00
|
|
|
let x = 0;
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x + 0;
|
|
|
|
x + (1 - 1);
|
2015-08-17 09:46:45 +00:00
|
|
|
x + 1;
|
2017-02-08 13:58:07 +00:00
|
|
|
0 + x;
|
2015-08-17 09:46:45 +00:00
|
|
|
1 + x;
|
2015-08-16 21:09:56 +00:00
|
|
|
x - ZERO; //no error, as we skip lookups (for now)
|
2017-02-08 13:58:07 +00:00
|
|
|
x | (0);
|
2015-08-16 21:09:56 +00:00
|
|
|
((ZERO)) | x; //no error, as we skip lookups (for now)
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
x * 1;
|
|
|
|
1 * x;
|
2015-08-16 21:09:56 +00:00
|
|
|
x / ONE; //no error, as we skip lookups (for now)
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2015-08-17 09:46:45 +00:00
|
|
|
x / 2; //no false positive
|
|
|
|
|
2015-08-16 21:09:56 +00:00
|
|
|
x & NEG_ONE; //no error, as we skip lookups (for now)
|
2017-02-08 13:58:07 +00:00
|
|
|
-1 & x;
|
2015-05-15 16:46:43 +00:00
|
|
|
}
|