mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
150 B
Rust
9 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;
|
|
}
|