2015-05-15 11:46:43 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
const ONE : i64 = 1;
|
|
|
|
const NEG_ONE : i64 = -1;
|
|
|
|
const ZERO : i64 = 0;
|
|
|
|
|
|
|
|
#[deny(identity_op)]
|
|
|
|
fn main() {
|
2015-08-11 13:22:20 -05:00
|
|
|
let x = 0;
|
|
|
|
|
2015-08-13 01:12:07 -05:00
|
|
|
x + 0; //~ERROR the operation is ineffective
|
|
|
|
0 + x; //~ERROR the operation is ineffective
|
|
|
|
x - ZERO; //~ERROR the operation is ineffective
|
|
|
|
x | (0); //~ERROR the operation is ineffective
|
|
|
|
((ZERO)) | x; //~ERROR the operation is ineffective
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-08-13 01:12:07 -05:00
|
|
|
x * 1; //~ERROR the operation is ineffective
|
|
|
|
1 * x; //~ERROR the operation is ineffective
|
|
|
|
x / ONE; //~ERROR the operation is ineffective
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-08-13 01:12:07 -05:00
|
|
|
x & NEG_ONE; //~ERROR the operation is ineffective
|
|
|
|
-1 & x; //~ERROR the operation is ineffective
|
2015-05-15 11:46:43 -05:00
|
|
|
}
|