2015-05-15 18:46:43 +02:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
const ONE : i64 = 1;
|
|
|
|
const NEG_ONE : i64 = -1;
|
|
|
|
const ZERO : i64 = 0;
|
|
|
|
|
2016-05-13 16:43:47 +02:00
|
|
|
#[allow(eq_op, no_effect, unnecessary_operation)]
|
2015-05-15 18:46:43 +02:00
|
|
|
#[deny(identity_op)]
|
|
|
|
fn main() {
|
2015-08-11 20:22:20 +02:00
|
|
|
let x = 0;
|
|
|
|
|
2015-08-13 08:12:07 +02:00
|
|
|
x + 0; //~ERROR the operation is ineffective
|
2015-08-17 11:46:45 +02:00
|
|
|
x + (1 - 1); //~ERROR the operation is ineffective
|
|
|
|
x + 1;
|
2015-08-13 08:12:07 +02:00
|
|
|
0 + x; //~ERROR the operation is ineffective
|
2015-08-17 11:46:45 +02:00
|
|
|
1 + x;
|
2015-08-16 23:09:56 +02:00
|
|
|
x - ZERO; //no error, as we skip lookups (for now)
|
2015-08-13 08:12:07 +02:00
|
|
|
x | (0); //~ERROR the operation is ineffective
|
2015-08-16 23:09:56 +02:00
|
|
|
((ZERO)) | x; //no error, as we skip lookups (for now)
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2015-08-13 08:12:07 +02:00
|
|
|
x * 1; //~ERROR the operation is ineffective
|
|
|
|
1 * x; //~ERROR the operation is ineffective
|
2015-08-16 23:09:56 +02:00
|
|
|
x / ONE; //no error, as we skip lookups (for now)
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2015-08-17 11:46:45 +02:00
|
|
|
x / 2; //no false positive
|
|
|
|
|
2015-08-16 23:09:56 +02:00
|
|
|
x & NEG_ONE; //no error, as we skip lookups (for now)
|
2015-08-13 08:12:07 +02:00
|
|
|
-1 & x; //~ERROR the operation is ineffective
|
2015-05-15 18:46:43 +02:00
|
|
|
}
|