rust/tests/ui/modulo_one.rs

15 lines
226 B
Rust
Raw Normal View History

2018-07-28 17:34:52 +02:00
#![warn(clippy::modulo_one)]
#![allow(clippy::no_effect, clippy::unnecessary_operation)]
static STATIC_ONE: usize = 2 - 1;
fn main() {
2017-02-08 14:58:07 +01:00
10 % 1;
10 % 2;
const ONE: u32 = 1 * 1;
2 % ONE;
5 % STATIC_ONE;
}