mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-30 16:39:26 +00:00
7aee04878f
(Did not touch strings.rs, which is fixed by @llogiq's PR)
24 lines
723 B
Rust
Executable file
24 lines
723 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
const ONE : i64 = 1;
|
|
const NEG_ONE : i64 = -1;
|
|
const ZERO : i64 = 0;
|
|
|
|
#[deny(identity_op)]
|
|
fn main() {
|
|
let x = 0;
|
|
|
|
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
|
|
|
|
x * 1; //~ERROR the operation is ineffective
|
|
1 * x; //~ERROR the operation is ineffective
|
|
x / ONE; //~ERROR the operation is ineffective
|
|
|
|
x & NEG_ONE; //~ERROR the operation is ineffective
|
|
-1 & x; //~ERROR the operation is ineffective
|
|
}
|