mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
10 lines
150 B
Rust
10 lines
150 B
Rust
|
#![warn(clippy::integer_division)]
|
||
|
|
||
|
fn main() {
|
||
|
let two = 2;
|
||
|
let n = 1 / 2;
|
||
|
let o = 1 / two;
|
||
|
let p = two / 4;
|
||
|
let x = 1. / 2.0;
|
||
|
}
|