rust-clippy/tests/ui/modulo_one.rs

29 lines
614 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::modulo_one)]
#![allow(clippy::no_effect, clippy::unnecessary_operation, clippy::identity_op)]
static STATIC_ONE: usize = 2 - 1;
2020-11-21 11:28:53 +00:00
static STATIC_NEG_ONE: i64 = 1 - 2;
fn main() {
2017-02-08 13:58:07 +00:00
10 % 1;
2020-11-21 11:28:53 +00:00
10 % -1;
10 % 2;
// also caught by rustc
i32::MIN % (-1);
const ONE: u32 = 1 * 1;
2020-11-21 11:28:53 +00:00
const NEG_ONE: i64 = 1 - 2;
const INT_MIN: i64 = i64::MIN;
2 % ONE;
// NOT caught by lint
5 % STATIC_ONE;
2020-11-21 11:28:53 +00:00
2 % NEG_ONE;
// NOT caught by lint
5 % STATIC_NEG_ONE;
// also caught by rustc
INT_MIN % NEG_ONE;
// ONLY caught by rustc
INT_MIN % STATIC_NEG_ONE;
}